use tutorial;
CREATE TABLE people (
'first' VARCHAR(100) NOT NULL,
middle CHAR(1) NOT NULL,
'last' VARCHAR(100) NOT NULL,
sex VARCHAR(6) NOT NULL,
birthday DATETIME NOT NULL,
state CHAR(2) NOT NULL,
PRIMARY KEY ( id )
id INT NOT NULL AUTO_INCREMENT,
);
//side note, I am extremely new, just trying to learn, and I came across this error and was unsure of how to fix it.