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
FOR /F Syntax in a batch file
Exchange 2003 Problem
sp3 will not update
How to I get a contact us page with forms to send information
Userform modeless - modal
Connect a Dell
ISA 2006 serices failed to start in timley fashion, routing and remote access the same
SQL Server Service manager saying 'Not Connected \\'
Microsoft Commerce Server Questions
How to save, edit, and read data (in code behind) from an unbound Gridview in ASP.NET