RobNotKnowing
MIS
Hi,,,,
I am trying to replace the Nulls with blanks in my query output. Does any1 know how?
I am trying to replace the Nulls with blanks in my query output. Does any1 know how?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT ISNULL(name_of_somethng, ' ') AS "name_of_something"
FROM MyTable
SELECT ISNULL(CAST(number_of_thngs AS VARCHAR), ' ') AS "number_of_things"
FROM MyTable