当前位置:Gxlcms > mysql > mysql5.5.23TYPE=InnoDB语法错误_MySQL

mysql5.5.23TYPE=InnoDB语法错误_MySQL

时间:2021-07-01 10:21:17 帮助过:38人阅读

bitsCN.com

mysql5.5.23 TYPE=InnoDB语法错误

CREATE TABLE IF NOT EXISTS `ad_aXXXX_test_delete` (  `payment` double(15,4) default '0.0000',  `createdatetime` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',  PRIMARY KEY  (`aspid`,`date`)) TYPE=InnoDB;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=InnoDB' 

在MYSQL5.5及以后版本中type=InnoDB 由ENGINE=InnoDB 代替。

由于5.5默认的存储引擎就是InnoDB,因此去掉这个属性不会有影响。

bitsCN.com

人气教程排行