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
What will you get by the cursor attribute sql%notfound?
What is an alias command?
Who developed sql?
what is the difference between delete and truncate commands? : Sql dba
What is over () in sql?
What is the difference between syntax error and runtime error?
What are triggers and its types?
How can you view the errors encountered in a trigger?
What is the source code of a program?
What is cursor explain with example?
what is a relationship and what are they? : Sql dba
What is the primary use of normalization?
What does 0 mean in sql?
Why is partition used in sql?
Is trigger a stored procedure?