I have a problem in mysql, i try to run this sentence
CREATE TABLE IF NOT EXISTS comunidad_estado (
id_comunidad_estado int(11) NOT NULL,
nombre varchar(50) NOT NULL,
id_pais int(11) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=latin1;
and the return is this:
I know my db is empty but i can´t understand why does not it create the table
Thanks in advance.