hi guys
I hope the thread title is self explanatory but im basically I've got a rather large ms sql table which is populated with data taken from an excel spreadsheet.
Problem is that there are a lot of cells all over the table within several columns that are empty whereas others contain the NULL value.
Is there a way to replace all of these empty cells with the NULL value??
so something like
thanks in advance
Omar.
I hope the thread title is self explanatory but im basically I've got a rather large ms sql table which is populated with data taken from an excel spreadsheet.
Problem is that there are a lot of cells all over the table within several columns that are empty whereas others contain the NULL value.
Is there a way to replace all of these empty cells with the NULL value??
so something like
Code:
select * from TABLE_NAME REPLACE '' WITH NULL
Omar.
Comment