SQL Server中查询时显示行号的方法


Select no=Identity(int,1,1),* Into #temptable From TableName --Order By SortField
Select * From #temptable --Where no>=6 And no < 10
Drop Table #temptable

Published At
Categories with 数据库类
Tagged with
comments powered by Disqus