This is the query I tried, but it does not work, it gives me the error as if the column does not exist.
I have the table Gzip_master
, it contains the status
column but when i try to execute the update it gives me
update_value column does not exist
Here's my code:
update_value = "Scraped"
query = 'UPDATE "Gzip_Master" SET "status"=update_value WHERE status IS null'
self.curs.execute(query)