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 |
Venkat144
Starting Member
2 Posts |
Posted - 2012-05-02 : 12:10:23
|
Hi,I have a doubt in handling null values.my table contains values as belowSELECT 1 as no ,'John' as Fitstname, 'Brown' as MiddleName, 'Male' as Gender,GETDATE() as DOBUNION ALLSELECT 2,'Sara', 'Smith', 'Female',nullUNION ALLSELECT null,'Harry', 'Thomas', NULL,GETDATE()UNION ALLSELECT 3,'Jennifer', 'Smith', 'Female',nullUNION ALLSELECT null,'Jada', 'Reynolds', NULL,GETDATE()Now I want to replace null values with empty value(0 or '') without using ISNULL , COALESCE and ANSI_NULLS ..Thanks in advance. Thanks & RegardsVenkat |
|
robvolk
Most Valuable Yak
15732 Posts |
Posted - 2012-05-02 : 12:57:17
|
Please do not cross post:http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=174221 |
|
|
|
|
|
|
|