I'm trying to add a column called "RecordID" to my table based on the unique field "AccountNum". The "RecordID" would be a sequential number starting from 1. Hopefully this can be done in a query.
i.e. original table:
AccountNum
242
256
298
308
output table:
RecordID AccountNum
1 242
2 256
3 298
4 308
I've been scratching my head off trying to solve this, any suggestions would be much appreciated!!
i.e. original table:
AccountNum
242
256
298
308
output table:
RecordID AccountNum
1 242
2 256
3 298
4 308
I've been scratching my head off trying to solve this, any suggestions would be much appreciated!!