I want to make only the blank cells in ATTRIB_VALUE equal to the values in ATTRIB_VALUE_NUM_9.
Advertisement
Answer
Something like this:
UPDATE *TABLE-NAME-HERE* SET ATTRIB_VALUE=ATTRIB_VALUE_NUM_9 WHERE ATTRIB_VALUE IS NULL OR ATTRIB_VALUE =''
I’m not sure what your table name is based on your post, but I think that’ll get you what you need.