I want to fire a Query \"SELECT * FROM TABLE\" but select only from row N+1. Any idea on how to do this?
SELECT * FROM TABLE
N+1
What about:
SELECT * FROM table LIMIT 50 OFFSET 1