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 / j.n.tripathi

Hi
Sorry To ALL.....
For Above Answer
Writing Mistake there.....

You Can Replace the null without using nvl
function.
using replace key world
like this
Select Replace(values,'null')
from demo
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 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is function and procedure?

569


What is sql performance tuning?

497


How to assign sql query results to pl sql variables?

515


what are date and time intervals? : Sql dba

567


What is an escape character in sql?

566






Why select is used in sql?

522


What is clause?

612


What is procedure and function?

520


what is the difference between myisam static and myisam dynamic? : Sql dba

587


What is the difference between inner join and left join?

550


1) Synonyms 2) Co-related Subquery 3) Different Jobs in Plsql 4) Explain Plan 5) Wrap 6) Query Optimization Technique 7) Bulk Collect 8) Types of index 9) IF primary key is created then the index created ? 10) Foreign Key 11) Exception Handling 12) Difference Between Delete and Trunc 13) Procedure Overloading 14) Grant Revoke 15) Procedure Argument types. 16) Functions. 17) Joins

1158


What is a unique key and primary key and foreign key?

571


what is the difference between where clause and having clause? : Sql dba

543


List out the acid properties and explain?

566


How is a PL/SQL code compiled?

672