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 are the syntax and use of the coalesce function?
Why is partition used in sql?
how many sql ddl commands are supported by 'mysql'? : Sql dba
What mean sql?
define sql update statement ? : Sql dba
what is data integrity? : Sql dba
what is a tablespace? : Sql dba
Is sql sequential or random?
Which operator is used in query for pattern matching?
Inline the values in PL/SQL, what does it mean.?
Why do we use joins in sql?
How to use transactions efficiently : transact sql
What is program debugging?
how to decrement dates by 1 in mysql? : Sql dba
What is pl/sql table? Why it is used?