Alguien me dice el error?

Asecas

CREATE TABLE email (

usuario TINYTEXT( 250 ) NOT NULL ,
password TINYTEXT NOT NULL ,
email TINYTEXT NOT NULL ,
PRIMARY KEY ( usuario , email )
) COMMENT = 'email'

el phpMyAdmin me dice:

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 '(250) NOT NULL, password TINYTEXT NOT NULL, email TINYTEXT

r2d2rigo

Me temo que a TINYTEXT no puedes especificarle tamaño del campo (por lo de 250).

Abreu

El tamaño del campo es fijo a 255

Usuarios habituales

  • Abreu
  • r2d2rigo
  • Asecas