Hola, quiero crear esta tabla:
create table tabla (
table varchar(40) not null,
title varchar(40) not null,
domain varchar(100) not null,
size int(40) not null,
primary key (table)
)
y me devuelve este error:
MySQL ha dicho:
#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 'table varchar(40) not null,
title varchar(40) not null,
domain
que estoy haciendo mal???
Gracias!