它告诉您从this教程复制并粘贴到phpMyAdmin的SQL页面的SQL文本给出了错误:
#1064 - 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 'TYPE=MyISAM' at line 6
这是剧本:
CREATE TABLE `scores` (
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
`name` VARCHAR(15) NOT NULL DEFAULT 'anonymous',
`score` INT(10) UNSIGNED NOT NULL DEFAULT '0'
)
TYPE=MyISAM;
我在这里弄错了什么?
答案 0 :(得分:5)
应该是ENGINE=MyISAM
而不是TYPE=MyISAM
。
答案 1 :(得分:4)
是。 TYPE不适用于MyISAM。
**TYPE** must be **ENGINE** .
这是常见问题!