Miracle: 用存储过程吧 [阅读: 598] 2005-11-01 09:23:27 select 'a' as F, * into #t1 from authors order by au_id asc select 'b' as F, * into #t2 from authors order by au_id desc select * from #t1 union all select * from #t2 drop table #t1 drop table #t2