tenho o seguinte arquivo, automovel.sql, tenho instruçoes de importalo para o banco de dados, faço tudo correto porém dá um erro de sintaxe segue o codigo do arquivo e o erro: codigo #---------------------------- # Table structure for automoveis #---------------------------- create table automoveis (
id int(11) not null auto_increment,
marca varchar(70),
modelo varchar(70),
ano int(4),
cor varchar(50),
preço varchar(100),
descricao varchar(255),
categoria varchar(80),
tipo varchar(80),
expediente int(11),
contador int(11),
oferta int(1),
dest_inicial int(1),
foto varchar(255),
data_hora date,
primary key (id))
type=MyISAM;
#----------------------------
# Records for table automoveis
#----------------------------
insert into automoveis ( id,marca,modelo,ano,cor,preço,descricao,categoria,tipo,expediente,contador,oferta,dest_inicial,foto,data_hora) values
(1, '1', '6', 2003, 'preto', 'R$15.000,00', null, '3', '1', 0, 0, 0, 0, null, null),
(2, '1', '6', 2003, 'preto', 'R$15.000,00', null, '2', '1', 0, 0, 0, 0, null, null),
(3, '5', '3', 2001, 'Branco', 'R$11.000,00', 'Vidro Elétrico', '3', '1', 0, 0, 0, 0, null, null),
(4, '5', '3', 2001, 'Branco', 'R$12.000,00', 'Direção Hidráulica', '3', '1', 0, 0, 0, 0, null, null),
(5, '3', '4', 1998, 'Cinza', 'R$8.000,00', '4 portas', '3', '1', 0, 0, 0, 0, null, null),
(6, '4', '7', 1997, 'Azul', 'R$31.500,00', 'Air Bag motorista', '3', '1', 0, 0, 1, 1, null, null),
#----------------------------
# Table structure for cadastros
#----------------------------
create table cadastros (
id int(11) not null auto_increment,
email varchar(255),
data_hora date,
primary key (id))
type=MyISAM;
#----------------------------
# Records for table cadastros
#----------------------------
insert into cadastros ( id,email,data_hora) values
(1, 'luciano@guiamc.com', null),
(2, 'teste@teste.com', null),
(3, 'alexandrelss@yahoo.com.br', null);
#----------------------------
# Table structure for categ_exp
#----------------------------
create table categ_exp (
id int(11) not null auto_increment,
categoria varchar(90),
primary key (id))
type=MyISAM;
#----------------------------
# No records for table categ_exp
#----------------------------
#----------------------------
# Table structure for categorias
#----------------------------
create table categorias (
id int(11) not null auto_increment,
categoria varchar(90),
data_hora date,
primary key (id))
type=MyISAM;
#----------------------------
# Records for table categorias
#----------------------------
insert into categorias ( id,categoria,data_hora) values
(1, 'semi-novo', null),
(2, 'novo', null),
(3, 'usado', null);
#----------------------------
# Table structure for contador
#----------------------------
create table contador (
id int(11) not null auto_increment,
contador int(11),
data_hora date,
primary key (id))
type=MyISAM;
#----------------------------
# Records for table contador
#----------------------------
insert into contador ( id,contador,data_hora) values
(1, 184, null);
#----------------------------
# Table structure for expedientes
#----------------------------
create table expedientes (
id int(11) not null auto_increment,
nome varchar(250),
login varchar(50),
senha varchar(50),
email varchar(255),
categoria varchar(90),
data_hora date,
primary key (id))
type=MyISAM;
#----------------------------
# Records for table expedientes
#----------------------------
insert into expedientes ( id,nome,login,senha,email,categoria,data_hora) values
(1, 'Administração', 'teste', 'teste', 'teste@teste.com.br', '1', null);
#----------------------------
# Table structure for marcas #----------------------------
create table marcas (
id int(11) not null auto_increment,
marca varchar(70),
data_hora date,
primary key (id))
type=MyISAM;
#----------------------------
# Records for table marcas
#----------------------------
insert into marcas ( id,marca,data_hora) values
(1, 'Fiat', null),
(2, 'Volkswagen', null),
(3, 'Ford', null),
(4, 'Audi', null),
(5, 'Chevrolet', null);
#----------------------------
# Table structure for modelos
#----------------------------
create table modelos (
id int(11) not null auto_increment,
modelo varchar(80),
data_hora date,
primary key (id))
type=MyISAM;
#----------------------------
# Records for table modelos
#----------------------------
insert into modelos ( id,modelo,data_hora) values
(1, 'Palio', null),
(2, 'Gol', null),
(3, 'Corsa', null),
(4, 'Fiesta', null),
(5, 'Golf', null),
(6, 'Uno', null),
(7, 'A3', null);
#----------------------------
# Table structure for noticias
#----------------------------
create table noticias (
id int(11) not null auto_increment,
titulo varchar(255),
noticia text,
destaque varchar(255),
data_hora date,
primary key (id))
type=MyISAM;
#----------------------------
# Records for table noticias
#----------------------------
insert into noticias ( id,titulo,noticia,destaque,data_hora) values
(1, 'gol', 0x747269636F6C6F72, 'kaka', null),
(2, 'Lula conversa com Bush', 0x4C756C6120636F6E766572736120636F6D2042757368, 'Lula conversa com Bush', null),
(3, 'são Paulo é campeão Brasileiro', 0x53616F205061756C6F20E92063616D7065E36F2042726173696C6569726F, 'são Paulo é campeão Brasileiro', null),
(4, 'Dolar despenca', 0x446F6C61722064657370656E6361, 'Dolar despenca', null),
(5, 'Bolsas em alta', 0x426F6C73617320656D20616C7461, 'Bolsas em alta', null),
(6, 'Teste01', 0x74657374653031, 'teste01dsasdfd', null);
#----------------------------
# Table structure for tipos
#----------------------------
create table tipos (
id int(11) not null auto_increment,
tipo varchar(90),
data_hora date,
primary key (id))
type=MyISAM;
#----------------------------
# Records for table tipos
#----------------------------
insert into tipos ( id,tipo,data_hora) values
(1, 'carro', null),
(2, 'caminhao', null),
(3, 'moto', null);
Erro
Erro
consulta SQL:
#----------------------------
# Records for table automoveis
#----------------------------
INSERT INTO automoveis( id, marca, modelo, ano, cor, preço, descricao, categoria, tipo, expediente, contador, oferta, dest_inicial, foto, data_hora )
VALUES ( 1, '1', '6', 2003, 'preto', 'R$15.000,00', NULL , '3', '1', 0, 0, 0, 0, NULL , NULL ) , ( 2, '1', '6', 2003, 'preto', 'R$15.000,00', NULL , '2', '1', 0, 0, 0, 0, NULL , NULL ) , ( 3, '5', '3', 2001, 'Branco', 'R$11.000,00', 'Vidro El�trico', '3 ', '1 ',0, 0, 0, 0, NULL , NULL ) , ( 4, '5 ', '3 ',2001, 'Branco ', 'R$12 .000, 00 ', 'Dire��o Hidr�ulica ', '3', '1', 0, 0, 0, 0, NULL , NULL ) , ( 5, '3', '4', 1998, 'Cinza ', 'R$8.000, 00 ', '4 portas ', '3', '1', 0, 0, 0, 0, NULL , NULL ) , ( 6, '4', '7', 1997, 'Azul ', 'R$31.500, 00 ', 'Air Bag motorista ', '3', '1', 0, 0, 1, 1, NULL , NULL ) , #
-------------------------- -- #
TABLE structure
FOR cadastros#
-------------------------- -- c
reate
TABLE cadastros(
id int( 11 ) NOT NULL
AUTO_INCREMENT , email varchar( 255 ) , data_hora date,
PRIMARY KEY ( id )
)
TYPE =
MYISAM ; Mensagens do MySQL :