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 / lavanya

suppose we hav,table name: demo
values
------
1
2
3
NULL
3
4
1
5
NULL



select values from demo where values!=NULL

Is This Answer Correct ?    0 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is %s in sql?

753


What does sql stand for?

702


how would you enter characters as hex numbers? : Sql dba

717


What is pls_integer in pl sql?

753


What is the default isolation level in sql server? : Transact sql

751






What are triggers in sql?

749


what is a cursor? : Sql dba

745


How many types of literals are available in pl sql?

750


what are the limitations of mysql in comparison of oracle? Mysql vs. Oracle. : Sql dba

714


What is the usage of nvl function?

770


What is the requirement of self-join?

740


Is sql better than excel?

701


Is trigger a stored procedure?

700


How do I start pl sql?

668


Explain spool.

904