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 is the difference between rename and alias?
How do I kill a query in postgresql?
what is commit? : Sql dba
Are sql connections encrypted?
Is left join faster than inner join?
How do you drop a trigger?
What are the types of triggers in sql?
How do you get column names only for a table (sql server)?
What is sql architecture?
What is composite data type in pl sql?
Why is nosql good?
How does left join work in sql?
What are the main features of cursor?
How to check if a column is nullable before setting to nullable?
What is partition by in sql?