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

Where is all the data on the internet stored?

558


what are the differences between get and post methods in form submitting. Give the case where we can use get and we can use post methods? : Sql dba

675


Can we call dml statement in function?

544


What is a delimiter in sas?

550


Which is better trigger or stored procedure?

504






What can I use instead of union in sql?

518


What is an exception in pl/sql?

544


What is the life of an sql statement?

527


Can we perform dml in function?

598


How do I order columns in sql?

533


Can we have two clustered index on a table?

568


What are the types of operators available in sql?

554


What pl/sql package consists of?

638


Define SQL and state the differences between SQL and other conventional programming Languages?

692


what is the difference difference between procedure and packages

9227