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 do I view tables in sql developer?

518


What does plv msg allows you to do?

683


How do I edit a trigger in sql developer?

543


What is sql engine in oracle?

526


how to drop an existing table in mysql? : Sql dba

560






When a dml statement is executed, in which cursor attributes, the outcome of the statement is saved?

637


what are all the common sql function? : Sql dba

587


Can we use joins in subquery?

539


Why function is used in sql?

524


Why schema is used in sql?

517


What type of database is cloud sql?

580


How long will it take to learn pl sql?

527


What is pragma in pl sql?

603


Can you do multiple joins in sql?

550


What are synonyms in sql?

536