我想写一个查询
select top 10 * from A
order by price
union
select top 3 * from A
order by price
或者那样的
select top 10 * from A
where name like '%smt%'
order by price
union
select top 3 * from A
where name not like '%smt%'
order by price
你能帮我么?