Hello,
I am trying to figure out how to update values of four columns and over 5000 rows. I'm thinking that I need to run something similar to
UPDATE TBLname
SET column_name1 = Null,
column_name2 = Null,
column_name3 = Null,
column_name4 = Null
Am I on the right path or am I missing something? Thank you in advance for your help!
I am trying to figure out how to update values of four columns and over 5000 rows. I'm thinking that I need to run something similar to
UPDATE TBLname
SET column_name1 = Null,
column_name2 = Null,
column_name3 = Null,
column_name4 = Null
Am I on the right path or am I missing something? Thank you in advance for your help!