Microsoft
Software
Hardware
Network
Question : I need to change all the 'null's in a query to a blank (empty string) with sql server
Is there any setting in SQL Server to change the display of 'NULL' in a query, showing a blank instead?
At the present time I'm using the function isnull(xfield,''), making very tedious to write each query, is there any toggle to take care of that?
Answer : I need to change all the 'null's in a query to a blank (empty string) with sql server
sorry, no mass way to take care of it...you have to continue using your isnull function.
select isnull(fieldname, '')
from tablename
Random Solutions
using string inside a sql string with EXECUTE sp_executesql
Select TOP 1 in an INNER JOIN
SSIS Package - Script Component question - remove leading spaces
Can Server 2008 R2 RDS Licensing Server be installed in an 2008 R2 Failover Cluster?
Where does XPS driver print or save the file to and what extention
How do I check if my Video Card driver is up to date in Gateway 6800-01e
System error &H8007008 (-2147024888) not enough storage available to rocess this command
Create NACHA Formated File using Access
Outlook 2007: How to build a custom button on Client Outlook ribbon to add a message to the blocked sender list, and move the message to the hidden message box
How do I release unused space from a single table in SQL Server?