I know:
Firebird FIRST and SKIP;
MySql LIMIT;
Sql Server ROWNUMBER();
Does someone knows a SQL ANSI way to perform result paging?
|
|
I know: Does someone knows a SQL ANSI way to perform result paging?
|
|||
|
|
|
|
See Limit—with offset section on this page: http://troels.arvin.dk/db/rdbms/ BTW, Firebird also supports ROWS clause since version 2.0 |
||
|
|
|
|
BTW, Troels, PostgreSQL supports Limit/Offset |
||
|
|
|
|
No official way, no.* Generally you'll want to have an abstracted-out function in your database access layer that will cope with it for you; give it a hint that you're on MySQL or PostgreSQL and it can add a 'LIMIT' clause to your query, or rownum over a subquery for Oracle and so on. If it doesn't know it can do any of those, fall back to fetching the lot and returning only a slice of the full list. *: eta: there is now, in ANSI SQL:2003. But it's not globally supported, it often performs badly, and it's a bit of a pain because you have to move/copy your ORDER into a new place in the statement, which makes it harder to wrap automatically:
There is also the "FETCH FIRST n ROWS ONLY" suffix in SQL:2008 (and DB2, where it originated). But like the TOP prefix in SQL Server, and the similar syntax in Informix, you can't specify a start point, so you still have to fetch and throw away some rows. |
|||
|
|
|
I would check out the answers to this question - likely to get you started. |
||
|
|
|
|
Insert your results into a storage table, ordered how you'd like to display them, but with a new IDENTITY column. Now SELECT from that table just the range of IDs you're interested in. (Be sure to clean out the table when you're done)
|
||
|
|
|
|
I don't think the ANSI approach is the way to go--it's just too limiting. There's no way, for example, to retrieve a limited result set (MySql As an example, this ANSI query:
Can be rewritten for SQL Server much more clearly (and will probably perform better):
The normal approach in this situation is to write a data interface in your app that can be implemented for any database. |
||||||
|