In postgres sql, I have this
INSERT INTO user (email, password)
values ('joe', 'test');
seems simple enough, but I get this
ERROR: syntax error at or near "user"
LINE 1: INSERT INTO user (email, password)
^
********** Error **********
ERROR: syntax error at or near "user"
SQL state: 42601
Character: 13
I have a table called user, but I don't understand what's going on.
Does anyone know?
Thanks