当前位置: 代码迷 >> 综合 >> MySQL 'type=InnoDB' 错误
  详细解决方案

MySQL 'type=InnoDB' 错误

热度:40   发布时间:2024-01-21 18:58:03.0
 create table hotel (id bigint not null auto_increment, email varchar(255), hotel_name varchar(255), password varchar(255), primary key (id)) 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,因此去掉这个属性不会有影响。

  相关解决方案