<p>mysql创建表代码:CREATETABLEdave_bannedwords(idINT(11)NOTNULLAUTO_INCREMENT,wordVARCHAR(60)NOTNULLDEFAULT'',PRIMARYKEY(id),KEYid(id))TYPE=MYISAMmysql报错如下:1064-YouhaveanerrorinyourSQLsyntax;checkthemanualthatcorrespondstoyourMySQLserverversionfortherightsyntaxtousenear'TYPE=MyISAM'atline6旧型的TYPE选项类似与ENGINE御马,TYPE已经在mysl4.0不建议使用并且在mysql5.5里面完全移除了。所以上面执行的功能应该用以下的代码:</p><p>CREATETABLEdave_bannedwords(</p><p>idINT(11)NOTNULLAUTO_INCREMENT,</p><p>wordVARCHAR(60)NOTNULLDEFAULT'',</p><p>PRIMARYKEY(id),</p><p>KEYid(id)--thisissuperfluousinthepresenceofyourPK,ergounnecessary</p><p>)ENGINE=MyISAM;本文由免费劳务派遣系统软件系统起航劳务派遣系统原创,转载请注明出处。</p>