vote up 2 vote down star

I know:
Firebird FIRST and SKIP;
MySql LIMIT;
Sql Server ROWNUMBER();

Does someone knows a SQL ANSI way to perform result paging?

flag

77% accept rate

6 Answers

vote up 4 vote down check

See Limit—with offset section on this page: http://troels.arvin.dk/db/rdbms/

BTW, Firebird also supports ROWS clause since version 2.0

link|flag
vote up 0 vote down

BTW, Troels, PostgreSQL supports Limit/Offset

link|flag
vote up 0 vote down

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:

SELECT * FROM (
    SELECT thiscol, thatcol, ROW_NUMBER() OVER (ORDER BY mtime DESC, id) AS rownumber
)
WHERE rownumber BETWEEN 10 AND 20 -- care, 1-based index
ORDER BY rownumber;

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.

link|flag
The ISO SQL:2008 standard specifies that you can indicate a starting point using "OFFSET n" before "FETCH FIRST m ROWS ONLY". But I know of no product which currently implements OFFSET. – Troels Arvin Jan 22 at 19:11
vote up 0 vote down

I would check out the answers to this question - likely to get you started.

link|flag
vote up 0 vote down

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)


Or do it on the client, as anything to do with presentation should not normally be done on the SQL Server (in my opinion)

link|flag
vote up -1 vote down

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 LIMIT or MSSql TOP) directly.

As an example, this ANSI query:

SELECT A.*
FROM A Tbl1, A Tbl2
WHERE Tbl1.ID = Tbl2.ID
AND (10 > (SELECT COUNT(Tbl2.ID) FROM A Tbl2 WHERE (Tbl2.ID < Tbl1.ID)))

Can be rewritten for SQL Server much more clearly (and will probably perform better):

SELECT TOP 10 A.*
FROM A

The normal approach in this situation is to write a data interface in your app that can be implemented for any database.

link|flag
This is plain wrong. – Troels Arvin Jan 22 at 14:33
Thanks for the feedback Troels--would you mind elaborating on what's wrong with it so I can improve it? – Michael Haren Jan 22 at 15:36
1) The ISO SQL standard has several ways to retrieve a limited result set. One of those, FETCH FIRST, (which is new in SQL:2008) is very terse. And it can be done without resorting to a correlated subquery. 2) Your two queries have different semantics if the ID column contains duplicates. – Troels Arvin Jan 22 at 17:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.