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
MS Access Radio Button and Text Field Required....
end error beeping in windows web server 2008
HTTP_500 Error in SBS 2003 Exchange ActiveSync - FolerSync Step
Upload/Download form (.doc) from folders via Userform
Revoked Certificates publication issue
"Save As" dialog box - Capture "Cancel" button click event.
Setfocus in a function
ActiveSync will not provision devices, even when it is configured to allow non provisonable devices
Hide column in CListCtrl
How do I write an SQL UPDATE statement on a price value?