34,870
社区成员




select top 30 * from
(
select top 30 *,'1' as px from tb where fs = 1
union all
select top 30 *,'1' as px from tb where fs = 2
union all
select top 30 *,'1' as px from tb where fs = 3
) t
order by px
select top 30 * from
(
select top 30 * from tb where fs = 1
union all
select top 30 * from tb where fs = 2
union all
select top 30 * from tb where fs = 3
) t