Row numbers in query result using Microsoft Access

前端 未结 7 2201
天命终不由人
天命终不由人 2020-11-29 09:35

I always use this query in sql server to get Row number in a table:

SELECT *
FROM   (SELECT *,
               Row_number()
                 OVER(
                    


        
7条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-29 10:13

    I might be late. Simply add a new field ID in the table with type AutoNumber. This will generate unique IDs and can utilize in Access too

提交回复
热议问题