select top 10 * from
(select * from 表1
union all
select * from 表2) as T
order by 某字段
union all就是把俩表连接
然后把他俩连接的结果集起名叫T
然后你就可以用top了
你可以直接运行一下括号里那句,如果表结构相同你两个可以用*,如果部分字段相同,你就要把在一起的字段写到一起了,比如
select id,name from 表1
union all
select id,name from 表2
类似这样