Question : How do I convert a null value to a blank space?

I have a table column that sometimes have null values.  In a sql statement, how can I  replace the null value with a space?

Answer : How do I convert a null value to a blank space?

select isnull(fieldvalue, ' ') from table

Random Solutions  
 
programming4us programming4us