Now say your table does not have an identify column, you don’t want to use a temporary table or alter your existing table, but you still would like to have a record number associated with each record. In this case you could use a self join to return a record number for each row. Here is an example that calculates a RecNum column, and displays the LastName for each record in the Northwind.dbo.Employees table. This example uses count(*) to count the number of records that are greater than or equal LastName in this self join.
SELECT COUNT(*) RecNum,
a.LastName
FROM Northwind.dbo.Employees a
JOIN Northwind.dbo.Employees b
ON a.LastName >= b.LastName
GROUP BY
a.LastName
ORDER BY
a.LastName
The results from this query looks like this:
| RecNum | LastName |
| 1 | Buchanan |
| 2 | Callahan |
| 3 | Davolio |
| 4 | Dodsworth |
| 5 | Fuller |
| 6 | King |
| 7 | Leverling |
| 8 | Peacock |
| 9 | Suyama |
This method works well for a small number of records, a few hundred or less. Since the number of record counts produced by a self join can grow quite big when large sets are involved, it can cause the performance of this technique to have slow response times for large set. This method also does not work if there are duplicate values in the columns used in the self join. If there are duplicates then the RecNum column will contain missing values.
Sequentially Number Records by Using a Cursor
A cursor can be used to associate a sequential number with records. To use this method you would allocate a cursor, then process through each cursor record one at a time associating a record number with each record. Here is an example that does just that. This example displays the authors last and first name with a calculated recnum value for each author in the pubs.dbo.authors table where the authors last name is less than ‘G’. Each author is displayed in order by last name and first name with the first author alphabetically being assigned a recnum of 1, and for each successive author the recnum is incremented by one.
DECLARE @i INT
DECLARE @name VARCHAR(200)
DECLARE authors_cursor CURSOR
FOR
SELECT RTRIM(au_lname) + ', ' + RTRIM(au_fname)
FROM pubs.dbo.authors
WHERE au_lname < 'G'
ORDER BY
au_lname,
au_fname
OPEN authors_cursor
FETCH NEXT FROM authors_cursor INTO @name
SET @i = 0
PRINT 'recnum name'
PRINT '------ -------------------------------'
WHILE @@fetch_status = 0
BEGIN
SET @i = @i + 1
PRINT CAST(@i AS CHAR(7)) + RTRIM(@name)
FETCH NEXT FROM authors_cursor INTO @name
END
CLOSE authors_cursor
DEALLOCATE authors_cursor
Output from the cursor query looks like this.
| RecNum | LastName |
| 1 | Bennet, Abraham |
| 2 | Blotchet-Halls, Reginald |
| 3 | Carson, Cheryl |
| 4 | DeFrance, Michel |
| 5 | del Castillo, Innes |
| 6 | Dull, Ann |
Sequentially Numbering Groups of Records
Another case I have run across for sequentially number records is where you want to number groups of records. Where each group starts numbering from 1 to N, where N is the number of records in the group, and then starts over again from 1, when the next group is encountered.
For an example of what I am talking about, let’s say you have a set of order detail records for different orders, where you want to associate a line number with each order detailed record. The line number will range from 1 to N, where N is the number of order detail records per order. The following code produces line numbers for orders in the Northwind Order Detail table.
SELECT OD.OrderID,
LineNumber,
OD.ProductID,
UnitPrice,
Quantity,
Discount
FROM Northwind.dbo.[Order Details] OD
JOIN (SELECT COUNT(*) LineNumber,
a.OrderID,
a.ProductID
FROM Northwind.dbo.[Order Details] A
JOIN Northwind.dbo.[Order Details] B
ON A.ProductID >= B.ProductID
AND A.OrderID = B.OrderID
GROUP BY
A.OrderID,
A.ProductID
) N
ON OD.OrderID = N.OrderID
AND OD.ProductID = N.ProductID
WHERE OD.OrderID < 10251
ORDER BY
OD.OrderID,
OD.ProductID
This code is similar to the prior self join example, except this code calculates the LineNumber as part of a sub-query. This way the LineNumber calculated in the sub-query can be joined with the complete Order Detail record.
The above query produces the following output:
| OrderID | LineNumber | ProductID | UnitPrice | Quantity | Discount |
| 10248 | 1 | 11 | 14.00 | 12 | 0.00 |
| 10248 | 2 | 42 | 9.80 | 10 | 0.00 |
| 10248 | 3 | 72 | 34.80 | 5 | 0.00 |
| 10249 | 1 | 14 | 18.60 | 9 | 0.00 |
| 10249 | 2 | 51 | 42.40 | 40 | 0.00 |
| 10250 | 1 | 41 | 7.70 | 10 | 0.00 |
| 10250 | 2 | 51 | 42.40 | 35 | 0.15 |
| 10250 | 3 | 65 | 16.80 | 15 | 0.15 |
Conclusion
These examples represent a number of different approaches at sequentially numbering sets for records. None of these methods are perfect. However, I hope these methods will give you some ideas on how you might be able to tackle your sequential record numbering issues.