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.
| 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 yourViewMadhivananFailing to plan is Planning to fail |
 |
|
|
jpc82
Starting Member
8 Posts |
Posted - 2006-02-08 : 09:26:28
|
| Thanks I was able to get it to work with that function. |
 |
|
|
|
|
|