我是学习数据库的新学生, 上周刚上完两个半月职训,
却连刚刚尝试建新资料表都搞不定.. (上课时都用老师给的档 copy)
刚想建立以下照书本范例修改的资料表, 想请问是最后一句有错吗 ?
(google 过还是不了解 "ENGINE=MyISAM" 是何意..)
CREATE TABLE 'course' (
`sid` int(11) NOT NULL auto_increment COMMENT '课程编号',
`name` varchar(30) NOT NULL COMMENT '课程名称',,
`descript` varchar(300) NOT NULL COMMENT '课程说明',
PRIMARY KEY (`sid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
MySQL 传回:
#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
''course' (
`sid` int(11) NOT NULL auto_increment COMMENT 'å‧+å“
先谢谢前辈的赐教