gpt4 book ai didi

ms-access - 如何在 Access 中创建自动编号字段值?

转载 作者:行者123 更新时间:2023-12-03 07:00:36 25 4
gpt4 key购买 nike

我正在尝试以下操作:

CREATE TABLE Table1
(
RecordNo autonumber, --error here!
PersonId varchar(50),
...
)

但是,有一个错误。
如何在 Access 中构建正确的查询?

最佳答案

根据SQL Auto Increment a Field :

CREATE TABLE Persons
(
P_Id PRIMARY KEY AUTOINCREMENT,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Address varchar(255),
City varchar(255)
)

The MS Access uses the AUTOINCREMENT keyword to perform an auto-increment feature.

By default, the starting value for AUTOINCREMENT is 1, and it will increment by 1 for each new record.

To specify that the "P_Id" column should start at value 10 and increment by 5, change the autoincrement to AUTOINCREMENT(10,5).

AUTOINCRMENT 的同义词包括 COUNTERIDENTITY。使用 IDENTITY 非常有意义,因为它与返回最后使用的自动编号值的 @IDENTITY 变量相匹配。

关于ms-access - 如何在 Access 中创建自动编号字段值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1072932/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com