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
how to convert dates to character strings? : Sql dba
What is the difference between partitioning and sharding?
what is heap table? : Sql dba
How to use transactions efficiently : transact sql
What is dba in sql? : SQL DBA
How many subqueries can be nested in a statement?
How many clustered indexes can be created on a table?
Which is faster subquery or join?
Explain correlated query work?
Does truncate need commit?
what is a join? : Sql dba
what are all the different types of indexes? : Sql dba
Which language is used in sql?
Why sql query is slow?
What pl/sql package consists of?