以下代碼是備份腳本(可能使用mysqldump
)生成的較大查詢中的一個最小示例。它導致錯誤,我不知道爲什麼。誰可以幫忙?備份腳本中的錯誤查詢導致錯誤1064
CREATE TABLE `tl_custom_tandem_lang` (
`id` varchar(2) COLLATE latin1_german2_ci NOT NULL,
PRIMARY_KEY (`id`),
UNIQUE KEY `id` (`id`)
);
主要生產以下錯誤:
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '(
id
), UNIQUE KEYid
(id
))' at line 3
不錯。接得好! – Pedigree