I am using SQL Server Management Studio to export the results of my query to text. I would like to export the results without the character NULL being printed between delimiters.
For example, instead of:
,NULL,
I would like to export:
,,
Thanks for your help
Just simply use
ISNULL(someColumn, '')
in our query. This will replace all NULL
values with an empty string
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With