When trying to create a table in SQL it gives me a syntax error, and I'm not sure what is the problem, since it's a very simple table
I tried this...
CREATE TABLE happy (
rank INT,
swag VARCHAR(20)
);
which is the typical syntax to create a table
I tried to remove primary key, but I was getting the same thing.