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 are the two characteristics of a primary key?
What are the different parts of a package?
Can a procedure in a package be overloaded?
what is log shipping? : Sql dba
Is drop table faster than truncate?
What do you understand by case manipulation functions?
What has stored procedures in sql?
What is difference between mysql and postgresql?
what are all the common sql function? : Sql dba
What is the usage of when clause in trigger?
Define SQL and state the differences between SQL and other conventional programming Languages?
Is pl sql useful?
Can procedure in package be overloaded?
Which is faster subquery or join?
Which certification is best for sql?