you can also use following query
SELECT "ID", "COL1", "ETC.." FROM tblTestWHERE "COL1" = "test"ORDER BY "ID" DESC OFFSET x ROWS FETCH NEXT y ROWS ONLY;
in this case you can skip first x
rows and limit resault into next y
rows.then you can play around with x
and y
inorder to paginate over your data.