Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

leomarriel

Erro de sintaxe

Recommended Posts

Boa tarde galera! Sou novissimo em PHP, MySQL.. sou webdesigner.. .então..

 

O problema é: peguei um sistema aqui imobiliário e quando vou inserir a tabela, ele da erro, sei que deve ter alguma linha errada, más minha inexperiencia em MySQL não encherga qual! kaaiaji eis aqui o comando:

 

create table vendas(

id int(6) NOT NULL auto_increment,

valor int(6),

pag_inicial bool DEFAULT 0,

oferta bool DEFAULT 0,

tipo char(20) NOT NULL,

endereco char(80) NOT NULL,

bairro char(40) NOT NULL,

cidade char(30) NOT NULL,

UF char(2) NOT NULL,

descricao text,

foto1 char(150) NOT NULL,

foto2 char(150) NOT NULL,

UNIQUE id(id)

UNIQUE foto1(foto1)

)

 

Eis o erro:

 

Mensagens do MySQL :

#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 'UNIQUE foto1(foto1)

)' at line 15

 

Sei que a galera aqui é fera, e comcerteza terei minha resposta!! sem mais.. até o momento estou futucando aqui pra ve se consigo algo..

 

Té mais .. grande abraço a todos, e fiquem com Deus.

Compartilhar este post


Link para o post
Compartilhar em outros sites
create table vendas(
id int(6) NOT NULL auto_increment,
valor int(6),
pag_inicial bool DEFAULT 0,
oferta bool DEFAULT 0,
tipo char(20) NOT NULL,
endereco char(80) NOT NULL,
bairro char(40) NOT NULL,
cidade char(30) NOT NULL,
UF char(2) NOT NULL,
descricao text,
foto1 char(150) NOT NULL,
foto2 char(150) NOT NULL,
UNIQUE id(id),
UNIQUE foto1(foto1)
)

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.