admin管理员组文章数量:1344956
Given tables setup like this
tableA {
id = 1
name = 'bob'
id = 2
name = 'sally'
id = 3
name = 'sue'
}
tableB {
id = 1
name = 'bob'
}
If I run this command, it returns ID's 2 and 3, as wanted:
select id
from tableA a
left join tableB b using (id)
where id not in (select id from tableB)
order by id
limit 10;
But it is a very large table so I need to use offset. When I try the following command, no results are returned.
select id
from tableA a
left join tableB b using (id)
where id not in (select id from tableB)
order by id
limit 10 offset 10;
Is there a way to use offset when a join is being used?
Given tables setup like this
tableA {
id = 1
name = 'bob'
id = 2
name = 'sally'
id = 3
name = 'sue'
}
tableB {
id = 1
name = 'bob'
}
If I run this command, it returns ID's 2 and 3, as wanted:
select id
from tableA a
left join tableB b using (id)
where id not in (select id from tableB)
order by id
limit 10;
But it is a very large table so I need to use offset. When I try the following command, no results are returned.
select id
from tableA a
left join tableB b using (id)
where id not in (select id from tableB)
order by id
limit 10 offset 10;
Is there a way to use offset when a join is being used?
Share Improve this question edited 19 hours ago ValNik 6,1341 gold badge7 silver badges15 bronze badges asked 19 hours ago user3052443user3052443 8481 gold badge10 silver badges23 bronze badges 11 | Show 6 more comments1 Answer
Reset to default 0The process environment is not visible, but I will suggest this approach. You process rows by batches (limit 10).
With parameter @startId=0
select id
from tableA a
where id>@startId
and id not in (select id from tableB)
order by id
limit 10;
After processing batch, take @startId as max(id) in processed batch and put as parameter value no next query - without offset.
select id
from tableA a
where id>@startId
and id not in (select id from tableB)
order by id
limit 10;
本文标签: left joinmysql offset doesn39t work with multiple tablesStack Overflow
版权声明:本文标题:left join - mysql offset doesn't work with multiple tables - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743764316a2534958.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
OFFSET
with aJOIN
, this is not the issue. The reason why you're getting no results after addingOFFSET 10
in the specific query you provided is because of how filtering is done after theJOIN
andWHERE
clause, especially combined withNOT IN
and the effect of your dataset size. – AztecCodes Commented 19 hours ago