**Am working with MySQL 8.0 Command Line Client
I am trying to create a general table in mysql db but keep getting the following error:
"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 'AUTO_INCREMENT, ManufacturerPTNO VARCHAR(40) NOT NULL, QuantityAvailable12am I' at line 2"
I have look through the manual but haven't found anything that helps with this issue; have also tried removing the index (id) column and assigning it as the KEY
CREATE TABLE quantity ( 
    id INT NOT NULL AUTO_INCREMENT, 
    ManufacturerPTNO VARCHAR(40) NOT NULL, 
    QuantityAvailable12am INT, 
    QuantityAvailable01am INT, 
    PRIMARY KEY (ManufacturerPTNO),
    );