up vote 50 down vote favorite
20
share [g+] share [fb]

I'm interested in learning some (ideally) database agnostic ways of selecting the nth row from a database table. It would also be interesting to see how this can be achieved using the native functionality of the following databases:

  • SQL Server
  • MySQL
  • PostgreSQL
  • SQLite
  • Oracle

I am currently doing something like the following in SQL Server 2005, but I'd be interested in seeing other's more agnostic approaches:

WITH Ordered AS (
SELECT ROW_NUMBER() OVER (ORDER BY OrderID) AS RowNumber, OrderID, OrderDate
FROM Orders)
SELECT *
FROM Ordered
WHERE RowNumber = 1000000

Credit for the above SQL: Firoz Ansari's Weblog

Update: See Troels Arvin's answer regarding the SQL standard. Troels, have you got any links we can cite?

link|improve this question

1  
Yes. Here's a link to information about the ISO SQL standard: troels.arvin.dk/db/rdbms/links/#standards – Troels Arvin Oct 31 '08 at 7:10
1  
Just to point out that by the definition of a relation, rows in a table do not have order, so the Nth row in a table can not be selected. What can be selected is Nth row in a row-set returned by (the rest of) a query, which is what your example and all other answers accomplish. To most this may just be semantics, but it points to the underlying problem of the question. If you do need to return OrderNo N , then introduce an OrderSequenceNo column in the table and generate it from an independent sequence generator upon creating a new order. – Damir Sudarevic Oct 26 '11 at 13:21
feedback

protected by Tim Post Feb 27 '11 at 0:56

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

20 Answers

up vote 46 down vote accepted

There are ways of doing this in optional parts of the standard, but a lot of databases support their own way of doing it.

A really good site that talks about this and other things is http://troels.arvin.dk/db/rdbms/#select-limit.

Basically, PostgreSQL and MySQL supports the non-standard:

SELECT...
LIMIT y OFFSET x 

Oracle, DB2 and MSSQL supports the standard windowing functions:

SELECT * FROM (
  SELECT
    ROW_NUMBER() OVER (ORDER BY key ASC) AS rownumber,
    columns
  FROM tablename
) AS foo
WHERE rownumber <= n

(which I just copied from the site linked above since I never use those DBs)

Update: As of PostgreSQL 8.4 the standard windowing functions are supported, so expect the second example to work for PostgreSQL as well.

link|improve this answer
2  
Oracle also supports a pseudo-column called ROWNUM. – erikkallen Mar 6 '09 at 13:32
2  
SQLite also uses the OFFSET and LIMIT syntax. – dan04 Apr 18 '10 at 4:08
MySQL uses the OFFSET and LIMIT syntax also. Firebird uses FIRST and SKIP keywords, but they are placed right after SELECT. – Doug Dec 1 '11 at 17:03
feedback

The syntax in PostgreSQL is:

SELECT * FROM mytable ORDER BY somefield LIMIT 1 OFFSET 20;

Apparently, the SQL standard is silent on the limit issue, which is why everyone implements it differently.

Edit: Just to clarify - the example above selects the 21st row. "OFFSET 20" is telling Postgres to skip the first 20 records.

link|improve this answer
Awesome, thanks. I think this is better than the accepted answer. – cool_me5000 Sep 21 '10 at 1:58
feedback

I'm not sure about any of the rest, but I know SQLite and MySQL don't have any "default" row ordering. In those two dialects, at least, the following snippet grabs the 15th entry from the_table, sorting by the date/time it was added:

SELECT * FROM the_table ORDER BY added DESC LIMIT 1,15

(of course, you'd need to have an added DATETIME field, and set it to the date/time that entry was added...)

link|improve this answer
feedback

I suspect this is wildly inefficient but is quite a simple approach, which worked on a small dataset that I tried it on.

select top 1 field
from table
where field in (select top 5 field from table order by field asc)
order by field desc

This would get the 5th item, change the second top number to get a different nth item

SQL server only (I think) but should work on older versions that do not support ROW_NUMBER().

link|improve this answer
feedback

When we used to work in MSSQL 2000, we did what we called the "triple-flip":

EDITED

DECLARE @InnerPageSize int
DECLARE @OuterPageSize int
DECLARE @Count int

SELECT @Count = COUNT(<column>) FROM <TABLE>
SET @InnerPageSize = @PageNum * @PageSize
SET @OuterPageSize = @Count - ((@PageNum - 1) * @PageSize)

IF (@OuterPageSize < 0)
    SET @OuterPageSize = 0
ELSE IF (@OuterPageSize > @PageSize)
    SET @OuterPageSize = @PageSize

DECLARE @sql NVARCHAR(8000)

SET @sql = 'SELECT * FROM
(
    SELECT TOP ' + CAST(@OuterPageSize AS nvarchar(5)) + ' * FROM
    (
        SELECT TOP ' + CAST(@InnerPageSize AS nvarchar(5)) + ' * FROM <TABLE> ORDER BY <column> ASC
    ) AS t1 ORDER BY <column> DESC
) AS t2 ORDER BY <column> ASC'

PRINT @sql
EXECUTE sp_executesql @sql

It wasn't elegant, and it wasn't fast, but it worked.

link|improve this answer
Say you have 25 rows and you want the third page of 10 row pagesize, i.e. rows 21-25. The innermost query gets the top 30 rows (rows 1-25). The middle query gets the last 10 rows (rows 25-16). The outer query reorders them and returns rows 16-25. This is clearly wrong if you wanted rows 21-25. – Bill Karwin Dec 30 '11 at 8:53
I've updated with a more correct approximation of the original query. – Adam V Dec 30 '11 at 15:32
Now it doesn't work if we want a middle page. Say we have 25 rows and we want the second page, i.e. rows 11-20. The inner query gets the top 2*10 = 20 rows, or rows 1-20. The middle query gets the last 15 rows: 25-((2-1)*10) = 15, which yields rows 20-6. The last query reverses the order and returns rows 6-20. This technique does not work, unless the total number of rows is a multiple of your desired page size. – Bill Karwin Dec 30 '11 at 17:14
Perhaps the best conclusion is that we should upgrade any remaining MS SQL Server 2000 instances. :-) It's nearly 2012, and this problem has been solved in better ways for many years! – Bill Karwin Dec 30 '11 at 17:15
@Bill Karwin: Note the IF / ELSE IF blocks below the OuterPageSize calculation - on pages 1 and 2, they will drop the OuterPageSize value back to 10. On page 3 (rows 21-25) the calculation will correctly return 5, and on all pages 4 and greater, the negative result from the calculation will be replaced by 0 (though it would probably just be quicker to return an empty data row immediately at that point). – Adam V Jan 1 at 1:50
show 1 more comment
feedback

Oracle:

select * from (select foo from bar order by foo) where ROWNUM = x
link|improve this answer
feedback

Contrary to what some of the answers claim, the SQL standard is not silent regarding this subject. Since SQL:2003, you have been able to use "window functions" to skip rows and limit result sets. And in SQL:2008--which has recently been approved--a sligthly simpler approach had been added, using "... OFFSET skip ROWS FETCH FIRST n ROWS ONLY". Personally, I don't think that SQL:2008's addition was really needed, so if I were ISO, I would have kept it out of an already rather large standard.

link|improve this answer
feedback

Here's a generic version of a sproc I recently wrote for Oracle that allows for dynamic paging/sorting - HTH

-- p_LowerBound = first row # in the returned set; if second page of 10 rows,
--                this would be 11 (-1 for unbounded/not set)
-- p_UpperBound = last row # in the returned set; if second page of 10 rows,
--                this would be 20 (-1 for unbounded/not set)

OPEN o_Cursor FOR
SELECT * FROM (
SELECT
    Column1,
    Column2
    rownum AS rn
FROM
(
    SELECT
        tbl.Column1,
        tbl.column2
    FROM MyTable tbl
    WHERE
        tbl.Column1 = p_PKParam OR
        tbl.Column1 = -1
    ORDER BY
        DECODE(p_sortOrder, 'A', DECODE(p_sortColumn, 1, Column1, 'X'),'X'),
        DECODE(p_sortOrder, 'D', DECODE(p_sortColumn, 1, Column1, 'X'),'X') DESC,
        DECODE(p_sortOrder, 'A', DECODE(p_sortColumn, 2, Column2, sysdate),sysdate),
        DECODE(p_sortOrder, 'D', DECODE(p_sortColumn, 2, Column2, sysdate),sysdate) DESC
))
WHERE
    (rn >= p_lowerBound OR p_lowerBound = -1) AND
    (rn <= p_upperBound OR p_upperBound = -1);
link|improve this answer
feedback

In MySQL:

select *
from thetable
limit n, 1

That is why I love MySQL.

link|improve this answer
feedback

LIMIT n,1 doesn't work in MS SQL Server. I think it's just about the only major database that doesn't support that syntax. To be fair, it isn't part of the SQL standard, although it is so widely supported that it should be. In everything except SQL server LIMIT works great. For SQL server, I haven't been able to find an elegant solution.

link|improve this answer
Except for Oracle, DB2, well just about every enterprise level database in the entire world. PostgreSQL is about the only enterprise capable database that supports the LIMIT keyword, and that's mostly because being open source it needs to be approachable by the ACID ignorent MySQL crowd. – David Mar 6 '09 at 13:39
feedback

But really, isn't all this really just parlor tricks for good database design in the first place? The few times I needed functionality like this it was for a simple one off query to make a quick report. For any real work, using tricks like these is inviting trouble. If selecting a particular row is needed then just have a column with a sequential value and be done with it.

link|improve this answer
feedback

In Sybase SQL Anywhere:

SELECT TOP 1 START AT n * from table ORDER BY whatever

Don't forget the ORDER BY or it's meaningless.

link|improve this answer
feedback

SQL 2005 and above has this feature built-in. Use the ROW_NUMBER() function. It is excellent for web-pages with a << Prev and Next >> style browsing:

Syntax:

SELECT * FROM
(SELECT ROW_NUMBER() OVER (ORDER BY MyColumnToOrderBy) AS RowNum, * FROM Table_1) sub
WHERE RowNum = 23
link|improve this answer
feedback

For example, if you want to select every 10th row in MSSQL, you can use;

SELECT * FROM (
  SELECT
    ROW_NUMBER() OVER (ORDER BY ColumnName1 ASC) AS rownumber, ColumnName1, ColumnName2
  FROM TableName
) AS foo
WHERE rownumber % 10 = 0

Just take the MOD and change number 10 here any number you want.

link|improve this answer
feedback

ADD:

LIMIT n,1

That will limit the results to one result starting at result n.

link|improve this answer
feedback

unbelievable that you can find a SQL engine executing this one ...

WITH sentence AS (SELECT stuff, row = ROW_NUMBER() OVER (ORDER BY Id) FROM SentenceType ) SELECT sen.stuff FROM sentence sen WHERE sen.row = (ABS(CHECKSUM(NEWID())) % 100) + 1

link|improve this answer
feedback

Pour quoi?

this

DECLARE @row INT
SET @row = (ABS(CHECKSUM(NEWID())) % 100) + 1 --rand 1-100 this aint cryptography

;WITH sentence AS
(SELECT 
    stuff,
    row = ROW_NUMBER() OVER (ORDER BY Id)
FROM 
    SentenceType
    )
SELECT
    sen.stuff
FROM sentence sen
WHERE sen.row = @row

Will give you the random @row Nth row every time, so what's so terrible about the former example? SQL2008 fyi, but no reason why 2005 shouldn't do that.

I'm just trying to work out what's so weird in the CTE underbelly that makes it behave like that.

link|improve this answer
feedback

SELECT * FROM emp a WHERE n = (SELECT COUNT( _rowid) FROM emp b WHERE a. _rowid >= b. _rowid);

link|improve this answer
feedback

For SQL Server, a generic way to go by row number is as such: SET ROWCOUNT @row --@row = the row number you wish to work on.

For Example:

set rowcount 20 --sets row to 20th row

select meat, cheese from dbo.sandwich --select columns from table at 20th row

set rowcount 0 --sets rowcount back to all rows

This will return the 20th row's information. Be sure to put in the rowcount 0 afterward.

I know noobish, but I am a SQL noob and I have used it so what can I say?

link|improve this answer
feedback

T-SQL - Selecting N'th RecordNumber from a Table

select * from
 (select row_number() over (order by Rand() desc) as Rno,* from TableName) T where T.Rno = RecordNumber

Where  RecordNumber --> Record Number to Select
       TableName --> To be Replaced with your Table Name

For e.g. to select 5 th record from a table Employee, your query should be

select * from
 (select row_number() over (order by Rand() desc) as Rno,* from Employee) T where T.Rno = 5
link|improve this answer
feedback

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