how to eliminate null values in a column i.e
table vlaues
1 2 3
NULL 3 4
1 5 NULL
i want output like this
1 2 3
3 4
1 5
i dnt want to use nvl is null and i dnt want replace the
NULL value with any value i.e nvl(col,o);

Answer Posted / jayendra

Hi
You Can Replace the null without using nvl
function.
using replace key world
like this
Select Replace(values,'null')
from demo where values!=NULL;
it will display the result like this
1 2 3
3 4
1 5

Thanks
J.N.Tripathi
9868703898

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to Execute a Package in PL/SQL.?

806


How many types of keys are there in sql?

755


How do I quit sql?

684


What are different types of triggers?

738


What is a procedure in pl sql?

776






What are the various restrictions imposed on view in terms of dml?

690


What is sqlerrm?

713


What is a join?

808


tell me about various levels of constraint. : Sql dba

753


What is a temporal data type?

773


What is scope of pl sql developer in future?

744


What is the difference between count 1 and count (*) in a sql query?

667


how mysql optimizes distinct? : Sql dba

728


What are the most important characteristics of pl/sql?

782


What is sql character function?

709