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 / jayendra
Hi
You Can Replace the null without using nvl
function.
using replace key world
like this
Select Replace(values,'null')
from demo where values!=NULL;
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 | 1 No |
Post New Answer View All Answers
What kind of join is join?
What is synonyms?
What is vector point function?
what are the differences among rownum, rank and dense_rank? : Sql dba
How do I make my sql query run faster?
What is full join in sql?
What do you mean by “trigger” in sql?
What is the usage of when clause in trigger?
Are stored procedures compiled?
How do I run a program in pl sql?
Which are the different case manipulation functions in sql?
What is mdb stand for?
What is assignment operator in pl sql?
What information is needed to connect sql*plus an oracle server?
Is oracle sql free?