To update a column in the database i use the following query
UPDATE table_name
SET column1 = value1
WHERE condition;
The problem with this query is that i end up updating one column at a time
i want to update a column by setting a condition and updating a whole column that meets the condition set
An example of what i have tried:
UPDATE adggtnz1.lng01_rpt_animrec
SET origin = 'New'
WHERE origin = NULL;
and the result of this query is
0 row(s) affected Rows matched: 0 Changed: 0 Warnings: 0 0
picture of sample data: