select * from "Product" LIMIT 20 OFFSET 20;
The above query returns 20 records after skipping the first 20.
Is it possible to fetch all the records after skipping the first 20?
select * from "Product" LIMIT 20 OFFSET 20;
The above query returns 20 records after skipping the first 20.
Is it possible to fetch all the records after skipping the first 20?