首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > Mysql >

mysql施用总结

2012-11-19 
mysql使用总结一、建表错误在Mysql6.0中执行:create table JBPM_BYTEARRAY (ID_ bigint not null auto_incr

mysql使用总结

一、建表错误

在Mysql6.0中执行:create table JBPM_BYTEARRAY (ID_ bigint not null auto_increment, NAME_ varchar(255), FILEDEFINITION_ bigint, 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' at line 1,

解决办法:type=InnoDB 修改为ENGINE=InnoDB

热点排行