5
I created a table in Power Designer as shown below
create table BANCO
(
COD_BANCO integer not null auto_increment,
NOME_BANCO varchar(50),
AGENCIA_BANCO integer,
CONTA_BANCO integer,
GERENTE_BANCO varchar(20),
FONE_BANCO varchar(10),
primary key (COD_BANCO)
)
type = InnoDB;
but caused this error
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 = InnoDB' at line 11
is because Power Designer is working with Mysql 5 and what is installed on my pc is Mysql 5.5
how do I resolve this problem? I’ll have to install Mysql 5 version?