Hi, I am brand new to SQL. I'm using postgres with PopSQL interface.
I am trying to run the following basic code from a tutorial but it gives me a Failed Error:
syntax error at or near "INSERT"
Here is the code:
CREATE TABLE people (
id INT,
name VARCHAR(255),
PRIMARY KEY(id)
)
INSERT INTO people VALUES (1, 'Corey');