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 / j.n.tripathi
Hi
Sorry To ALL.....
For Above Answer
Writing Mistake there.....
You Can Replace the null without using nvl
function.
using replace key world
like this
Select Replace(values,'null')
from demo
it will display the result like this
1 2 3
3 4
1 5
Thanks
J.N.Tripathi
9868703898
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
what is single byte over head in oracle..?
what is a table in a database ? : Sql dba
What are types of exception?
How do I filter in sql profiler?
What are the triggers associated with image items?
What is the difference between instead of trigger and after trigger?
What are dml commands?
Is primary key clustered or nonclustered?
what are the types of subquery? : Sql dba
What is difference between cursor and trigger?
What is normalisation and its types?
What is trigger in sql? Explain
What is the starting oracle error number? What is meant by forward declaration in functions?
What is a .db file?
Is the primary key an index?