I want to create a requested table in mysql, and it throws this at me:
Executed SQL Statement:
Create table 'deliverytrackingdb'.'pedido'(
'id' int(4) NOT NULL AUTO_INCREMENT,
'precio' double(5) NOT NULL,
'descripcion' varchar(200) NOT NULL,
'direccion' varchar(200) NOT NULL,
'comentario' varchar(200),
'estado' enum('En preparación','Preparado','Asignado a repartidor','En reparto','Entregado') NOT NULL,
primary key ('id')
) ENGINE=InnoDB
Error Number: 1064 Error Message: 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 ') NOT NULL,
descripcion
varchar (200) NOT NULL,
direccion
varchar (200) 'at line 3