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.
我正在使用以下命令在 mdb 数据库中创建一个表,当我删除自动编号类型时它工作正常
"CREATE TABLE pxs(sid Autonumber , Adress Text , Port Text, user Text, pass Text, sreq Integer, freq Integer)"
那么我应该如何将 id 列定义为自动编号?
您可以使用:
CREATE TABLE pxs(sid counter primary key, ...
请注意,这user是一个保留字,因此您可能希望使用其他名称。
user