Im trying to update all the null values in my table (tblHours2010) to = 0
Columns in the table are week2 to week52
How would I rewrite this so I dont need to run it 54 times?
Columns in the table are week2 to week52
How would I rewrite this so I dont need to run it 54 times?
Code:
Update tblHours2010 Set week2 = 0
Where week2 Is Null
Last edited: