Skip to content
Advertisement

ON CONFLICT DO UPDATE syntax and EXCLUDED error on cursor.executemany

I have a simplified postgres (ver 13) table below with updated rows generated in python with psycopg2. My question is when I update the price field in the rows, I can’t complete the update because of the following errors of ON CONFLICT DO UPDATE. If I don’t use ON CONFLICT DO UPDATE , I can update the chart but I would like ON CONFLICT DO UPDATE because it eliminates duplicate rows.

With ON CONFLICT DO UPDATE , I only need to update the fields “price” and “last_updated” but update only when the rows match the “id,item,original_price_date”

The following errors I get ON CONFLICT DO UPDATE :

Error : syntax error at or near “=”

JavaScript

Error : relation “price_data” does not exist

JavaScript

My original creation of the data :

JavaScript

Advertisement

Answer

I added a constraint row (CONSTRAINT com UNIQUE (original_price_date,item))) where I created the table.

JavaScript

Then I could insert the data NOT creating duplicate rows of (original_price_date,item) by the following statement.

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement