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.
嗨,我已经为数据库创建了一个产品表,但是当我尝试将数据插入其中时,我收到了这个错误:
这是表格字段:
唯一需要的字段是前 6 个和。第一个是设置为自动增量的索引,其他 5 个是我添加的。
这里有什么问题?
我假设您已将 PK 分配给自动增量......所以试试这个,
INSERT INTO products (brandid, subcatid, productname, productprice, productimagepath) VALUES (111,'P111',111,'P111.jpg');
让我知道它对您有帮助吗?