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 is bind reference and how can it be created?
Is sql database free?
Is there a pl/sql pragma similar to deterministic, but for the scope of one single sql select?
How many types of triggers are there in pl sql?
Can pl sql procedure have a return statement?
What are hotfixes and patches?
How do you bind variables in pl sql?
Why having clause is used in sql?
What is the difference between the sql*loader and import utilities? : aql loader
What is date functions?
What is sql keyword?
What are some predefined exceptions in pl/sql?
What does subquery mean in sql?
What is out parameter used for eventhough return statement can also be used in pl/sql?
What type of join is sql join?