select * from (
select ID,NAME from info_a
union
select ID,NAME from info_b
union 
select ID,NAME from info_c
) as a order by ID desc
不知道可行不可行,没有测