Como criar uma tabela no Mysql [closed]

-2

Instalei o programa Mysql e o programa Phpmyadmin e tentei criar um banco de dados com uma tabela. Isto é o que eu escrevi e o que eu consegui

mysql> create table aziende(
-> ragione varchar (32) not null
-> email varchar (32) not null
-> telefono int (10) unsigned nut null
-> ); 

ERROR 1064 (42000): 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 'email varchar (32) not null
telefono int (10) unsigned nut null
)' at line 3
    
por Matei 27.01.2017 / 14:38

1 resposta

3

Sua sintaxe está incorreta e você digitou nut em um determinado ponto.

CREATE TABLE aziende(
   ragione VARCHAR(32) NOT NULL,
   email VARCHAR(32) NOT NULL,
   telefono INT(10) UNSIGNED NOT NULL,
); 
    
por bc2946088 27.01.2017 / 14:42