发布网友 发布时间:2022-04-24 04:40
共1个回答
热心网友 时间:2022-04-11 20:11
您好,1、在SQL
Server数据库查询的时候,我们有时有这样的需求,就是要找出数据表里指定范围行内的数据记录,比如说要找出数据表里第10行到第20行的这10条数据,那么我们怎么来实现呢?
2、按照通常的方法是实现不了的,我们得借助于临时表以及一个函数来实现
代码如下:
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
用完后删除临时表
这样我们就实现了我们的目的。