seabaz2000
IS-IT--Management
Hi,
I was just wondering is there any way to update every column in a given table something like this.
This code above would aim to set every column that was null in the table to blank.
I hope I am explaining myself correctly.
Regards
I was just wondering is there any way to update every column in a given table something like this.
Code:
UPDATE #TempTableForData1
SET = " "
WHERE VALUE = NULL
This code above would aim to set every column that was null in the table to blank.
I hope I am explaining myself correctly.
Regards