S
Steve S
The following SQL selects 8 records from a table [Judges].
SELECT Judges.[Judge ID], Judges.[Contest ID]
FROM Judges
WHERE (((Judges.[Contest ID])=30));
I want to add a column that will also display the relative record number as
shown below.
78 12 1
23 12 2
44 12 3
53 12 4
and so on.
Adding the additional column is not the problem: how to calculate or devise
the relative number is the problem
any and all help is appreciated
SELECT Judges.[Judge ID], Judges.[Contest ID]
FROM Judges
WHERE (((Judges.[Contest ID])=30));
I want to add a column that will also display the relative record number as
shown below.
78 12 1
23 12 2
44 12 3
53 12 4
and so on.
Adding the additional column is not the problem: how to calculate or devise
the relative number is the problem
any and all help is appreciated