Question
The title says it all, I would like something like this:
update [table]
set [all columns] = null
where [all columns] = ''
;
I have a very large table and while taking a break before diving in and doing some alterations column by column ( >100 total columns and >500k rows), I figured I would look for a broader solution.
BackStory
I'm dealing with an import (no hardcopy), no ability to access hardcopy. I do have access to the raw imported file thoguh. Anyway all columns are in US currency. For whatever reason instead of filling $0 for those entries they decided on blank '', not null but blank ''. Anything would be better than blank lol.
Thank You