I have table with rows below:
id | s1 | s2 | s3 | s4 | s5 |
---------------------------------------
1 | 6 | 2 | null | null | null |
---------------------------------------
2 | 8 | 1 | null | null | null |
I have already this values, and I want to add data to cells where null
My query is:
UPDATE table1
SET s3 = "some_s3" WHERE id = 1
SET s4 = "some_s4" WHERE id = 1
SET s5 = "some_s5" WHERE id = 1
SET s3 = "some_s3" WHERE id = 2
SET s4 = "some_s4" WHERE id = 2
SET s5 = "some_s5" WHERE id = 2
Something like this. But i need to update thousand rows.