SyntaxFix
Write A Post
Hire A Developer
Questions
select * from (select id,name,ROW_NUMBER() OVER (ORDER BY id asc) as row from tableName1) tbl1 where tbl1.row>=10 and tbl1.row<=15
Will print rows from 10 to 15.