sql面试题(查看数据中指定几行记录)
程序员文章站
2024-02-29 16:00:58
分享一个sql数据库面试题。
问题:
表 table1,主键为 id,id为自动编号(id可能不连续),要求查询第31-40行记录,请问sql语句怎么写?
实现代码:...
分享一个sql数据库面试题。
问题:
表 table1,主键为 id,id为自动编号(id可能不连续),要求查询第31-40行记录,请问sql语句怎么写?
实现代码:
复制代码 代码如下:
--sql server
select top 10 *
from
(select top 40 * from table1 order by id) a
order by id desc
--oracle
select *
from
(select top 40 * from t order by id) a
where
rownum>30
上一篇: MySQL 统计查询实现代码