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 anonymous block in sql?
Is ms sql traffic encrypted?
What action do you have to perform before retrieving data from the next result set of a stored procedure ?
how to show all tables with 'mysql'? : Sql dba
What are triggers in sql?
What is the difference between having clause and where clause?
What is oracle sql developer?
how can I make a script that can be bi-language (supports english, german)? : Sql dba
What is sharding in sql?
What is pl sql package?
Which query operators in sql is used for pattern matching?
how to use in conditions? : Sql dba
What does trigger mean in slang?
Write a sql query to get the third highest salary of an employee from employee_table?
How to add a column ‘salary’ to a table employee_details?