解决 MySQL 错误“TYPE=MyISAM”?
若要修复错误,仅需将 TYPE 替换为 ENGINE。设置引擎的语法如下 −
ENGINE = MyISAM;
使用 TYPE 时会发生 MySQL 错误。让我们在创建表时看一下相同的场景 −
mysql> create table Customers −> ( −> CustomerId int, −> CustomerName varchar(200) −> )TYPE = MyISAM;
错误如下 −
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 'TYPE = MyISAM' at line 5
若要解决以上错误,将 TYPE 替换为 ENGINE,如下所示 −
mysql> create table Customers −> ( −> CustomerId int, −> CustomerName varchar(200) −> )ENGINE = MyISAM; Query OK, 0 rows affected (0.24 sec)
MySQL 中的“ENGINE = MyISAM”已更新成功。
广告