I get an error when inserting data into a text column using "", when I delete the quotes then postgres run and add the column with 0 value.
INSERT INTO tablex (dates, times, openp, high, low, closep, volume)
VALUES ("03/08/2021", 2300, 1680, 1688.6, 1680, 1685.1, 12074);
Columns dates and times were both defined as text columns. The other columns were defined as Float.
When I run the query with the above code, I get the following error:
ERROR: column "03/08/2021" does not exist
LINE 4: ("03/08/2021", 2300, 1680, 1688.6, 1680, 1685.1, 12074);
When the quotes are removed, the column dates populates with 0 value
How can I fix this problem?
Try this and see if it works. Replace double quotes with single quote.