vote up 0 vote down star

If I have a row id and I want the 5th row back from that row how would I do this?

Normally I could just go

rowId - 5

and that would be the id of the 5th row back...

However, I need to account for if a row has been deleted, this would mean that, for example

39, 40, 41, 42, 43, 44, 45

if rowId was 45, then I would get rowId of 40 for my 5th row back, but if row 42 was deleted, then we would have...

39, 40, 41, 43, 44, 45

and the rowId of 45 would give me a rowId of 40 again, when it should be giving me 39 (because it is the 5th row back).

I can't think of any way to get around this, I can't renumber the id's after a deletion because the table may grow to be a million rows long. Anyone have any ideas?

Thanks, Matt

flag
Can you describe what you're actually tring to do? It seems like RowID-5 might be a non-standard way to do something standard. – JP May 23 at 20:38

6 Answers

vote up 3 vote down

You can use the ROW_NUMBER ranking functions of T-SQL...

Here's some pseudo-SQL code:

SELECT id, value,
   ROW_NUMBER() OVER ( ORDER BY id) AS RowNo
FROM ranking AS r1
WHERE RowNo = selectedRowNo - 5
link|flag
One "by" too many, and I think you need a subquery before you can use the RowNo in a WHERE statement? – Andomar May 23 at 20:39
@Andomar: Removed the "by", thanks... I'll leave the actual subquery or whatever to the implementor... – Arjan Einbu May 23 at 20:44
vote up 2 vote down

If you're on Sql Server 2005 or higher, you can use ROW_NUMBER:

SELECT *
FROM (
    SELECT TOP 5
         ROW_NUMBER() OVER (ORDER BY YourId DESC) AS RowNr,
         *
    FROM YourTable
    WHERE YourId < CurrentId
    ORDER BY YourId DESC
) vw
WHERE RowNr = 5

The "ORDER BY ID ASC" specifies how you want to rows numbered; you can change it to pretty much any sort order, for example:

ROW_NUMBER() OVER (ORDER BY YourTimestamp DESC) AS RowNr,

Would be helpful in a query looking for a previous row based on age.

link|flag
vote up 2 vote down

Building on automatic's answer

select top 1 * from (
     select top 5 * from table where Id < 45 order by id desc
) as fiverows order by id asc

This will give the 5th row back, and only the 5th row back.

Note: Select * is baaaaaad, mkay? :-)

link|flag
+1 Probably the simplest solution out there :) – Andomar May 24 at 7:26
vote up 1 vote down

Looks to me like you want the 5th row back based on sequential ids (which has nothing to do with physical order in the db)?

If this is what you want and you know the id you want to start with, say 45, you could

select top 5 * from table where Id < 45 order by id desc

link|flag
So simple that I totally overlooked this one... Should work fine if you know the rows ID, but that might add a second query... – Arjan Einbu May 23 at 20:47
vote up 1 vote down

I realize this is double-nested, but if you're not doing it very often, and/or the RowNum column is indexed, it shouldn't cause too much trouble:

SELECT *
  FROM YourTable
 WHERE RowNum = (SELECT MIN(RowNum)
                   FROM (SELECT TOP 5 RowNum
                           FROM YourTable
                       ORDER BY RowNum DESC) t)

Also, this solution will work with older versions of SQL as well, whereas the "over" clause is 2005+ only.

link|flag
You might add a WHERE statement to the innermost query ;) – Andomar May 23 at 20:48
If you're just going for the fifth-newest row in general, you wouldn't need it, but if you're filtering it all, you're right - you'd need to make sure add the WHERE clause on the inner-most query, not the outer one! – rwmnau May 23 at 20:56
It won't work without a name for the innermost subquery, f.e. FROM (SELECT TOP 5 ... DESC) SubName) – Andomar May 23 at 21:14
Ah - you're right. I've made the correction. – rwmnau May 24 at 3:09
+1 Nice, Dan F seems to have found an even simpler solution – Andomar May 24 at 7:26
vote up 1 vote down

I generally use a CTE for numbering. Something like this would do:

;WITH NumberedRows
AS
(SELECT   ID, ROW_NUMBER() OVER(ORDER BY ID ASC) AS RowNumber
FROM      MyTable)
SELECT    ID
FROM      NumberedRows
WHERE     RowNumber = (SELECT RowNumber FROM NumberedRows WHERE ID = @MyID) - 5

It's not vastly different from any of the solutions already provided, but I find the CTE's abstraction makes the code's intent much clearer.

link|flag

Your Answer

Get an OpenID
or

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