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 / lavanya
suppose we hav,table name: demo
values
------
1
2
3
NULL
3
4
1
5
NULL
select values from demo where values!=NULL
| Is This Answer Correct ? | 0 Yes | 8 No |
Post New Answer View All Answers
What does rownum mean in sql?
What is number function in sql?
When is the explicit cursor used ?
How does cross join work in sql?
How will you distinguish a global variable with a local variable in pl/sql?
What is the difference between pl and sql?
What is difference between inner join and self join?
How do I audit the sql sent to the server?
What is schema in sql?
How do I view output in sql developer?
Is sql database free?
Does a user_objects view have an entry for a trigger?
what is an extent ? : Sql dba
What is the maximum number of columns in sql table?
What is the difference between unique and primary key constraints?