SQL Server高级培训中,探讨了如何优化Select语句以实现数据排序。在升序排序中使用Select * from tb_employee06 order by奖金,在降序排序中使用Select * from tb_employee06 order by奖金desc。另外,还介绍了如何使用Select top n * from tbl_stu来列出前n条记录,以及在需要列出前n-m条记录(其中m>n)时,如何使用Select top n+1 * from (select top m * from tbl_question) tbl_question order by id desc。