时间:2021-07-01 10:21:17 帮助过:27人阅读
SQL Server中选出指定范围行的SQL语句代码写法实例
在数据库查询的时候,我们有时有这样的需求,就是要找出数据表里指定范围行内的数据记录,比如说要找出数据表里第10行到第20行的这10条数据,那么我们怎么来实现呢?
Select no=Identity(int,1,1),* Into #temptable From dbo.teacher_info order by teacher_name--利用Identity函数生成记录序号
Select * From #temptable Where no>=10 And no < 20
Drop Table #temptable--用完后删除临时表
这样我们就实现了我们的目的。