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

The only option I feel is

SELECT * FROM TABLE
WHERE COL_NAME IS NOT NULL

will return the non null values which I think is asked for
this question.

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to assign sql query results to pl sql variables?

582


How delete all records from table in sql?

642


what is clause? : Sql dba

674


What is offset in sql query?

709


What are the datatypes available in pl/sql ?

694






what is a tablespace? : Sql dba

651


Can cursors be part of a trigger body?

1227


How can I change database name in sql?

611


how many tables will create when we create table, what are they? : Sql dba

646


How many types of cursors are available in pl/sql?

673


What are pl/sql packages?

647


Does truncate need commit?

587


What is left join in sql?

667


How to find 3rd highest salary of an employee from the employee table in sql?

655


How do I run a program in pl sql?

590