发布网友 发布时间:2022-04-16 02:28
共5个回答
懂视网 时间:2022-04-16 06:50
分享一个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
热心网友 时间:2022-04-16 03:58
可以做到。热心网友 时间:2022-04-16 05:16
你设的主键是ID,ID是连续的热心网友 时间:2022-04-16 06:50
select * from 表热心网友 时间:2022-04-16 08:42
只能查询具体的东西,不能查询行,不是查询下一次的记录也是6