I'm trying to run the following command:
CREATE TABLE artist
(
aid INT PRIMARY KEY AUTO_INCREMENT,
fname VARCHAR(30) NOT NULL,
lname VARCHAR(40),
dob DATE,
gender CHAR(1)
);
I've tried putting it all on one line. I've tried messing with capitalization, and I get the same error message which is
-bash: syntax error near unexpected token `('
Any ideas what I'm doing wrong?