我已经在以下结构的Table1中运行了一些插入:
Table1
_________
ID - Number - Double - No dups, Primary key
Field1 - Number - Integer - Dups OK
我的插入内容如下:
INSERT INTO Table1(ID, Field1)VALUES(10001392, 7)
我得到的错误是
"Microsoft Access can't append all records in the append query."
和
"it didn't add 1 record(s) to the table due to key violations"
ID 10001392不在表中的有趣部分,所以我确信它不会尝试插入重复项。类似的插件也很好用:
INSERT INTO Table1(ID, Field1)VALUES(10001391, 5)
我迷失了......