在Oracle中怎样查询前10条记录?

在Oracle中怎样查询前10条记录?,第1张

根据时间条件排序,取前十条和后十条。

1、有时间字段, 根据时间条件排序,取前十条和后十条

(1)前十条:

select * from (select * from tab_name a order by date_col )

where rownum<11

(2)后十条:

select * from (select * from tab_name a order by date_col  desc)

where rownum<11

2、没有时间字段, 直接根据物理存储顺序,取前十条和后十条

(1)前十条:

select * from (select * from tab_name a order by rownum)

where rownum<11

(2)后十条:

select * from (select * from tab_name a order by rownuml  desc)

where rownum<11

SQL Server查询前N条记录:

因为id可能不是连续的,所以不能用取得10<id<20的记录的方法。

有三种方法可以实现:

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

语句

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

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

语句:

select identity(int,1,1) as id,* into #temp from tbl

select * from #temp where id between 10 and 20

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

三、如果觉得第一种方法效率太低,经过讨论,得出第三种方法:

语句:

SELECT TOP 10 * FROM (SELECT TOP 20 * FROM tblORDER BY id) as tbl2 ORDER BY tbl2.id DESC


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10714002.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-10
下一篇 2023-05-10

发表评论

登录后才能评论

评论列表(0条)

保存