SQL Server中选出指定范围行的SQL语句代码
程序员文章站
2022-06-29 14:29:08
在数据库查询的时候,我们有时有这样的需求,就是要找出数据表里指定范围行内的数据记录,比如说要找出数据表里第10行到第20行的这10条数据,那么我们怎么来实现呢? ...
在数据库查询的时候,我们有时有这样的需求,就是要找出数据表里指定范围行内的数据记录,比如说要找出数据表里第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--用完后删除临时表
这样我们就实现了我们的目的。
按照通常的方法是实现不了的,我们得借助于临时表以及一个函数来实现
代码如下:
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--用完后删除临时表
这样我们就实现了我们的目的。