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
Why select is used in sql?
How do I view output in sql developer?
Explain the uses of control file.
Does a join table need a primary key?
what are sequences
Can a commit statement be executed as part of a trigger?
How do we accept inputs from user during runtime?
how to increment dates by 1 in mysql? : Sql dba
What are different types of queries in sql?
what is 'trigger' in sql? : Sql dba
What are the two types of exceptions in pl/sql?
What is fmtonly in sql?
Compare sql & pl/sql
What are the steps for performance tuning.
How do you explain an index?