在mysql中创建表时出错(1064)

aks*_*hay 0 mysql

我正在使用mysql db(版本5.5)并使用mysql查询浏览器(v 1.1.5).但是当我尝试使用查询浏览器创建一个简单的表时出现以下错误:

CREATE TABLE `tstaks`.`employee` (
  `empid` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
  `name` VARCHAR(45) NOT NULL,
  PRIMARY KEY(`empid`)
)
TYPE = InnoDB;


mysql error no 1064
you have an error in your sql sytax,check the manual that corresponds to your mysqlserver version for right syntax to use
near type ='innoDB
Run Code Online (Sandbox Code Playgroud)

Pet*_*hof 5

TYPE需要是ENGINE:ENGINE=InnoDB