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
is mysql query is case sensitive? : Sql dba
What are the different types of functions in sql?
What is cursor in pl sql with examples?
Can a select statement fire a trigger?
Which column in the user.triggers data dictionary view shows that the trigger is a pl/sql trigger?
Mention what does the hierarchical profiler does?
how to write date and time literals? : Sql dba
Show how functions and procedures are called in a pl/sql block.
Is ms sql is free?
How does postgresql compare to mysql?
What is an alias command?
what is the difference between char and varchar data types? : Sql dba
How many tables can you join in sql?
Explain the types of joins in sql?
What are the sql versions?