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 are wild cards used in database for pattern matching ? : Sql dba
What is a unique constraint?
How to write a single statement that concatenates the words ?hello? And ?world? And assign it in a variable named greeting?
Can we use ddl commands in pl sql?
When is a declare statement required?
Does oracle roll back the transaction on an error?
What has stored procedures in sql?
How can you fetch first 5 characters of the string?
How do I enable sql encryption?
what is data manipulation language? : Sql dba
What problem one might face while writing log information to a data-base table in pl/sql?
What is package in pl sql with an examples?
What is $$ in sql?
Can we insert in view in sql?
Give the order of sql select?