Add a sequential number to records returned by a query

G

Guest

How may I write a query so it adds a field to the information otherwise
returned which contains a sequential ID number?
 
J

John Nurick

Here's an example that works in Northwind:

SELECT
(SELECT COUNT(ProductName) FROM Products AS B
WHERE B.ProductName <= A.ProductName) AS Seq,
ProductID,
ProductName
FROM Products AS A
ORDER BY ProductName
;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top