Aparece un error de sintaxis cerca de AUTOINCREMENT
. ¿Cuál es la causa de este error?Error en near 'Autoincrement'
CREATE TABLE person (
id INTEGER NOT NULL AUTOINCREMENT,
name TEXT NOT NULL
);
CREATE TABLE department (
id INTEGER NOT NULL AUTOINCREMENT,
name TEXT NOT NULL,
FOREIGN KEY (leader) REFERENCES person(id)
);
Gracias, lo perdí. –