My table has three columns, but I'm only using one for most rows.
I'm trying to do a basic insert in PSQL, like so:
grouper=> INSERT INTO master_list VALUES ('Ebay',,);
But I'm getting a syntax error:
ERROR: syntax error at or near ","
LINE 1: INSERT INTO master_list VALUES ('Ebay',,);
^
Any advice or suggestions welcome!
insertstatement. Then you don't have to worry about empty values.