Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以帮我解决以下问题。我正在尝试创建一个表,该表将包含一个 Id 列,该列在插入记录时会自动递增。这是用于微软访问的。
"CREATE TABLE " & tblName & " ([P_Id] integer not null AUTOINCREMENT(100, 5))"
尝试以下方法来创建一个带有自动编号字段的 MS Access 表:
"CREATE TABLE [" & tblName & "] ([P_Id] integer not null IDENTITY)"
我不知道您是否可以指定起始值和增量,但您可以尝试一下。