SQL Server 查询前N条记录的常用方法

 

SQL Server 查询前N条记录时,因为id可能不是连续的,所以不能用取得10<id<20的记录的方法。

有三种方法可以实现:

一、搜索前20条记录,指定不包括前10条

代码如下:

select top 20 * from table where id not in (select top 10 id from table)

二、搜索记录生成临时表,建立临时表的自增id。通过取得自增id的10<id<20的记录的方法取得所需数据。

代码如下:

select identity(int,1,1) as id,* into #temp from table;  
select * from #temp where id between 10 and 20

这个方法实际上是两条语句,但你可以让他连续执行,就像一条语句一样完成任务。

三、第一种方法效率比较低,在其基础上优化,得出第三种方法:

代码如下:

select top 10 * from (select top 20 * from table order by id) as table2 order by table2.id asc
—— 完 ——
相关推荐
评论

立 为 非 似

中 谁 昨 此

宵 风 夜 星

。 露 , 辰

文章点击榜

细 无 轻 自

如 边 似 在

愁 丝 梦 飞

。 雨 , 花