Ver Mensaje Individual
  #1 (permalink)  
Antiguo 17/09/2010, 02:57
albertpg
 
Fecha de Ingreso: enero-2005
Mensajes: 170
Antigüedad: 19 años, 3 meses
Puntos: 0
Error al insertar

Estoy insertando esta tabla en PHPMyAdmin y me da el siguiente error:

Cita:
MySQL ha dicho: Documentación
#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 ''categories' (
'id_categoria' INTEGER NOT NULL AUTO_INCREMENT,
'ct_titol'' at line 1
Código MySQL:
Ver original
  1. CREATE TABLE 'categories' (
  2.   'id_categoria' INTEGER NOT NULL AUTO_INCREMENT,
  3.   'ct_titol' VARCHAR(100),
  4.   'ct_descripcio' TEXT,
  5.   'cs_titol' VARCHAR(100),
  6.   'cs_descripcio' TEXT,
  7.   'en_titol' VARCHAR(100),
  8.   'en_descripcio' TEXT,
  9.   UNIQUE ('id_categoria'),
  10.   PRIMARY KEY ('id_categoria'),
  11. ) ENGINE=myisam DEFAULT CHARSET=utf8;
  12.  
  13. SET autocommit=1;

Que hay mal?