Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Need help on the query to remove Null records

448749Apr 13 2009 — edited Nov 4 2010
Hi,
I have a table with the following data.

COL1 COL2 COL3
1 a1 NULL NULL
2 b1 NULL x3
3 c1 NULL y3
4 NULL d2 z3
5 NULL a2 NULL
6 NULL c2 NULL
7 NULL b2 NULL


I want to get output like this: (i.e. All null values have to be eliminated from the all the columns).


COL1 COL2 COL3
1 a1 d2 x3
2 b1 a2 y3
3 c1 c2 z3
4 NULL b2 NULL

Is there any way to get it achieved thru a query?

Thanks,
GV

Edited by: GV2 on Apr 13, 2009 8:03 AM
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 12 2009
Added on Apr 13 2009
12 comments
28,575 views