#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 'TYPE=MyISAM AUTO_INCREMENT=2' at line 7
CREATE TABLE `admin` (
`id` int(4) NOT NULL auto_increment,
`nome` char(60) NOT NULL default '',
`login` char(30) NOT NULL default '',
`senha` char(30) NOT NULL default '',
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=2;
--
-- Extraindo dados da tabela `admin`
--
INSERT INTO `admin` VALUES (1, 'admin', 'admin', 'admin');
-- --------------------------------------------------------
--
-- Estrutura da tabela `adv`
--
CREATE TABLE `adv` (
`cod` int(11) NOT NULL auto_increment,
`msg` mediumtext NOT NULL,
PRIMARY KEY (`cod`)
) TYPE=MyISAM AUTO_INCREMENT=3;
... continua mas e muito grande e ta dando erro.
Pergunta
leandryn
Boa noite pessoal
to o sequinte erro na hora de importar
alguém pode me ajudar?? por favor.
agradeço desde já.
uso xamp
#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 'TYPE=MyISAM AUTO_INCREMENT=2' at line 7
Editado por Denis CourcyLink para o comentário
Compartilhar em outros sites
4 respostass a esta questão
Posts Recomendados