SyntaxFix
Write A Post
Hire A Developer
Questions
In MySql, you can get 10 rows starting from row 20 using:
SELECT * FROM Reflow WHERE ReflowProcessID = somenumber ORDER BY ID DESC LIMIT 10 OFFSET 20 --Equivalent to LIMIT 20, 10