I have many snowflake table which multiple columns with datatype TEXT or varchar having NULL values. I wanted to replace all the NULL values to empty string or blank at table level. I am looking for a way apart from NULLIF and COALESCE as they will work at column level and it is not feasible to specify 100's of columns.
Sample data :
A B C D
1 test NULL NULL
99 NULL test test
Desired output :
A B C D
1 test
99 test test

