如何将唯一 "row number" 密钥添加到没有唯一密钥的 MS Access table?
How can I add a unique "row number" key to a MS Access table that has no unique keys?
我在 Microsoft Access 中有一个 table T1
,包含 Name
和 EmployeeName
列。它没有任何唯一的密钥。如何向每一行添加唯一的行号 ID
?
当您在 Access 中创建 table 时,它会自动为每条记录分配一个唯一 ID,即每一行信息。
这对我有用
Alter Table Table_Name
Add P_Key Number AUTOINCREMENT;
我在 Microsoft Access 中有一个 table T1
,包含 Name
和 EmployeeName
列。它没有任何唯一的密钥。如何向每一行添加唯一的行号 ID
?
当您在 Access 中创建 table 时,它会自动为每条记录分配一个唯一 ID,即每一行信息。
这对我有用
Alter Table Table_Name
Add P_Key Number AUTOINCREMENT;