May 2, 2005 #1 inse Programmer May 1, 2005 2 CZ How select rows, example 50-100, when function "select limit 50,100 ...." is not suported in db access.
How select rows, example 50-100, when function "select limit 50,100 ...." is not suported in db access.
May 2, 2005 #2 PHV MIS Nov 8, 2002 53,708 FR You may try something like this: SELECT TOP 50 * FROM ( SELECT TOP 100 * FROM yourTable ORDER BY sortKey ASC ) AS A ORDER BY A.sortKey DESC Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244 Upvote 0 Downvote
You may try something like this: SELECT TOP 50 * FROM ( SELECT TOP 100 * FROM yourTable ORDER BY sortKey ASC ) AS A ORDER BY A.sortKey DESC Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
May 2, 2005 Thread starter #3 inse Programmer May 1, 2005 2 CZ Your advice was good for me. I thank You very much. Upvote 0 Downvote