What's the difference between
SELECT * FROM table LIMIT 50 OFFSET 5
SELECT * FROM table LIMIT 5,50
Is the second just a shorter version without using the OFFSET clause, or does writing is as an argument give better performance?
What's the difference between
SELECT * FROM table LIMIT 50 OFFSET 5
SELECT * FROM table LIMIT 5,50
Is the second just a shorter version without using the OFFSET clause, or does writing is as an argument give better performance?