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
try below query it's work
SELECT * FROM `my_table` WHERE id != (SELECT id From my_table LIMIT 1)
Hope this will help