MariaDB [product_db]> CREATE TABLE product (
-> id INT NOT NULL AUT0_INCREMENT,
-> name VARCHAR(128) NOT NULL
-> description TEXT NULL DEFAULT NULL,
-> PRIMARY KEY (id)
-> );
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '
So I made a mistake in 3 line because I am missing “,” trying to create a simple table.How I am able to correct without having to write it all again? How can I move the cursor in cmd upwards?