We have multiple same id's and some of them have values and some of them are null, we wanted to copy the values where it is null.
Current scenario
id | value |
---|---|
1 | null |
1 | null |
1 | null |
1 | ABC |
1 | null |
Expected
id | value |
---|---|
1 | ABC |
1 | ABC |
1 | ABC |
1 | ABC |
1 | ABC |