Ver Mensaje Individual
  #1  
Antiguo 11-06-2007
La__X La__X is offline
Miembro
 
Registrado: ene 2006
Posts: 46
Reputación: 0
La__X Va por buen camino
Question No puedo crear Tabla (MyISAM)

Hola Foro, estoy tratando de crear la siguiente tabla, tal cual manual de referencia de mysql :
Código SQL [-]
mysql> CREATE TABLE articles (     
->   id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY,     
->   title VARCHAR(200),     
->   body TEXT,     
->   FULLTEXT (title,body)     
-> );

Pero obtengo un error: The used table type doesn't support FULLTEXT indexes

He leido que solo las tablas MyIsam soportan el fulltext, pero como hago esto???
Responder Con Cita