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 the difference between union and union all? : Sql dba
Name three sql operations that perform a sort.
How is debugging done?
What is full join in sql?
Write the alter statement to enable all the triggers on the t.students table.
What is the starting oracle error number? What is meant by forward declaration in functions?
Explain the uses of control file.
What is difference between hql and native sql?
How to start the command-line sql*plus?
What are all the common sql functions?
What are the three pl sql block types?
how many sql ddl commands are supported by 'mysql'? : Sql dba
How does sql profiler work?
what is a tablespace? : Sql dba
How do sql triggers work?