Simone: UNIQUE Problem bei mediumtext

Beitrag lesen

Hallo,

CREATE TABLE titel (
  id int(9) NOT NULL auto_increment,
  titel longtext NOT NULL,
  keyword text NOT NULL,
  PRIMARY KEY  (id),
  UNIQUE KEY titel (titel(255))
) TYPE=MyISAM AUTO_INCREMENT=1 ;

hab's hinbekommen, mich freu!

sind jedoch auch nur die ersten 255 Zeichen!

Simone