I want to be able to add sequential numbers to the query result set. For example if the records are:
ID Name
3423 Susan
3424 Mary
3425 Jim
I want the result to be
Serial No. Name
1 Susan
2 mary
3 Jim
I looked at all places but in vain. I have been trying the ROW_NUMBER() OVER ( ORDER BY (SELECT 1)) but it brings up syntax error in access.
Any ideas??