Erros foram encontrados durante a análise
Boa noite, executando o SQL no Banco de Dados recebi vários erros veja abaixo
Erro
Static analysis:
4 errors were found during analysis.
-
A symbol name was expected! (near "1" at position 59)
-
Unexpected beginning of statement. (near "11" at position 65)
-
Unexpected beginning of statement. (near "3" at position 74)
-
Unrecognized statement type. (near "int" at position 76)
Comando SQL:
CREATE TABLE fiyataralik ( id varchar(1) NOT NULL, 1 int(11), 3 int(11), 5 int(11), 8 int(11), 11 int(11), 15 int(11), 22 int(11), 28 int(11), PRIMARY KEY (id) )
**Mensagens do MySQL :**
#1064 - Você tem um erro de sintaxe no seu SQL próximo a '1 int(11),
3 int(11),
5 int(11),
8 int(11),
11 int(11),
15 i' na linha 3
**Os códigos estão com os números do lado esquerdo marcados, Este são os código**
DROP TABLE IF EXISTS admin_users;
CREATE TABLE admin_users (
LINHA 3 id int(11) NOT NULL auto_increment,
usermail varchar(100),
password varchar(32),
PRIMARY KEY (id)
);
DROP TABLE IF EXISTS bolge;
CREATE TABLE bolge (
id bigint(20) NOT NULL auto_increment,
isim_TR varchar(500) NOT NULL,
isim_DE varchar(500) NOT NULL,
isim_EN varchar(500) NOT NULL,
PRIMARY KEY (id)
59 );
DROP TABLE IF EXISTS fiyataralik;
65 CREATE TABLE fiyataralik (
id varchar(1) NOT NULL,
1 int(11),
3 int(11),
5 int(11),
8 int(11),
11 int(11),
15 int(11),
22 int(11),
74 28 int(11),
PRIMARY KEY (id)
76 );
Se poder mim ajudar agradeço muitoDiscussão (0)
Carregando comentários...