LIMIT A,B
就是 LIMIT B OFFSET A
,就是前后参数颠倒一下。
select distinct salary from employee
order by salary desc limit P,1
# 上面等同于下面
select distinct salary from employee
order by salary desc limit 1 offset P
虽然我也不知道为什么,但是就是这样的,我看了好久的资料。。
LIMIT A,B
就是 LIMIT B OFFSET A
,就是前后参数颠倒一下。
select distinct salary from employee
order by salary desc limit P,1
# 上面等同于下面
select distinct salary from employee
order by salary desc limit 1 offset P
虽然我也不知道为什么,但是就是这样的,我看了好久的资料。。
本文标题:SQL LIMIT 和 OFFSET 参数的位置是相反的。
本文链接:https://www.haomeiwen.com/subject/rksiqctx.html
网友评论