Erro ao criar tabela no MySQL
Versão do MySQL = 4.0.20
Script para criar tabela
CREATE TABLE questions(
qid int NOT NULL AUTO_INCREMENT PRIMARY KEY ,
subject VARCHAR( 75 ) NULL ,
question TEXT NULL ,
date DATETIME NULL ,
SHOW TINYINT( 1 ) NOT NULL
) ENGINE = MYISAM DEFAULT CHARSET = utf8 COLLATE utf8_general_ci
Erro ao gerar essa tabela
Mensagens do MySQL : Documentação
#1064 - 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 'show TINYINT( 1 ) NOT NULL
) ENGINE = MyISAM DEFAULT CHARSET=
Discussão (3)
Carregando comentários...