0
I need to perform an update in a table but only in columns that are blank and not all, only a specific number.
For example, having this table:
col1 col2 col3 col4 col5 col6 col7
id1 val1 val2
id2 val1
id3
I intend to update id1, id2, id3 in 2 columns each and would look like this:
col1 col2 col3 col4 col5 col6 col7
id1 val1 val2 val3 val4
id2 val1 val2
id3 val1 val2
What better way if there’s some way to do it...