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
Is sql procedural language?
How do I count duplicates in sql?
What are different types of functions in sql?
What is the difference between joins?
what is the difference between undefined value and null value? : Sql dba
what is single byte over head in oracle..?
Does google use sql?
How can a function retun more than one value in oracle with proper example?
What is consistency?
What is pl sql collection?
What is range partitioning?
List the various privileges that a user can grant to another user?
how to enter binary numbers in sql statements? : Sql dba
What is rtm stands for?
Can a table have no primary key?