I have a table and I want to update multiple fields to complete the table so all fields are filled, how do I do this in a Postgres script? As all I can find is how to update one record at a time, or how to loop through and change everything to the same value.
With 100’s of records to update this will take ages
oid | name | nickname | dob |
---|---|---|---|
0 | Chris | Cross | 01Jan1985 |
1 | Richard | 02Feb1896 | |
2 | Michael | Mikey | |
3 | Jonathan |
Currently I can update one field with the following:
UPDATE mytable SET nickname = 'Rick' Where oid = 1;
But how do I do this to change all these?
- nickname = ‘Rick’ where oid = 1
- nickname = ‘Jono’ where oid = 3
- dob = ‘03Mar1987’ where oid = 2
- dob = ‘04Apr1988’ where oid = 3
Thanks in Advance Daz
You can use
UPDATE ... FROM
and join with the new values:Since an
UPDATE
can change each row only once, you have to aggregate byid
.