Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 Left Outer join without nulls?

Author  Topic 

jpc82
Starting Member

8 Posts

Posted - 2006-02-08 : 09:13:16
I have a view which uses a left outer join, but I want the field's that turn out to be null to actually be '', is this possible?

I tried looking online, but I have not found a solution.

madhivanan
Premature Yak Congratulator

22864 Posts

Posted - 2006-02-08 : 09:21:59
Select IsNull(col,''),otherColumns from yourView

Madhivanan

Failing to plan is Planning to fail
Go to Top of Page

jpc82
Starting Member

8 Posts

Posted - 2006-02-08 : 09:26:28
Thanks I was able to get it to work with that function.
Go to Top of Page
   

- Advertisement -