我嘗試在數據庫中插入值時遇到了mysql表的問題。#1062 - 對'PRIMARY'鍵重複輸入'0'
我跟着這個教程
http://sqllessons.com/categories.html
和教程創建的表像表
表的代碼
create table categories
(id integer not null primary key
, name varchar(37) not null
, parentid integer null
, foreign key parentid_fk (parentid)
references categories (id)
);
錯誤 SQL查詢:編輯編輯
INSERT INTO `mydb`.`categories` (
`id` ,
`name` ,
`parentid`
)
VALUES (
'', 'groceries', NULL
), (
'', 'snacks', NULL
)
MySQL said: Documentation
#1062 - Duplicate entry '0' for key 'PRIMARY'
幫我解決這個問題。
我已經評論過其他人的回答,所以我覺得有點不好評論你的評論:這個答案碰到了指責':-)' – Martin
它工作的很完美。非常感謝Linoff先生。 –