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

What is a primary key example?

695


How do you concatenate in sql?

723


What is synonyms?

773


How can you load microsoft excel data into oracle? : aql loader

811


What is the use of double ampersand (&&) in sql queries? Give an example

811






What is the cause of mutating table error and how can we solve it?

784


Does view contain data?

788


Which sql statement is used to delete data from a database?

651


What are the disadvantages of file system?

824


How can we make an if statement within a select statement?

734


What is a subquery in sql?

694


what is the difference between blob and text? : Sql dba

724


How to get each name only once from an employee table?

807


What are the commands used in sql?

735


Which are sql * plus commands?

714