Hi
How can I achieve the following query (paging inside the subquery)? Pseudo code:
select *
from A
where id in
(
select id
from A
where .....
order by id asc,
limit 100
offset 1000
)
I need to optimize the paging query. The query analizer shows me +- 5x optimization in my case when I do a paging in a subquery.
Best regards,
MiloszeS