Buenos días.
Por favor me podrían ayudar con este problema? Gracias.
Tengo la versión de MySQL que instalamos en el módulo de bases de datos Haciendo el ejercicio inicial del curso JAVA y JDVC me sale este error:
mysql> use control_de_stock
Database changed
mysql> create tabla producto (
-> id INT AUTO_INCREMENT,
-> nombre VARCHAR(50) NOT NULL,
-> descripcion VARCHAR(255),
-> cantidad INT NOT NULL DEFAULT 0,
-> PRIMARY KEY(id)
-> )Engine=InnoDB;
ERROR 1064 (42000): 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 'tabla producto (
id INT AUTO_INCREMENT,
nombre VARCHAR(50) NOT NULL,
descripcion' at line 1
mysql>