のようなクエリを書きたい
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
手伝ってくれませんか?