gpt4 book ai didi

sql select * 在精确的行数之间

转载 作者:太空狗 更新时间:2023-10-30 01:47:49 25 4
gpt4 key购买 nike

我想知道我是否可以使用 select 语句检索行的确切位置。例如 235 和 250 之间的行。这可能吗?

提前致谢,沙市

最佳答案

我不知道一般方法.. 但每个数据库都有一个方法。例如在 oracle 中你可以用一个嵌套的选择来完成它

甲骨文:

select * from (
select a, b, c from table_foo
where id = 124
)
WHERE rownum >= 235
and ROWNUM <= 250

MSSQL

select * from 
(select Row_Number() over
(order by userID) as RowIndex, * from users) as Sub
Where Sub.RowIndex >= 235 and Sub.RowIndex <= 250

MySQL

SELECT * FROM TableName LIMIT 235, 15

关于sql select * 在精确的行数之间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3635754/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com