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 / hiya
SELECT REPLACE(A,'NULL',' '),
REPLACE(B,'NULL',' '),
REPLACE(C,'NULL',' ')FROM TEST1
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is sql an operating system?
how to add a new column to an existing table in mysql? : Sql dba
How do I use google cloud in sql?
What is a dirty read sql?
What is a unique key?
what is dbms? : Sql dba
What is cartesian join in sql?
What is the use of function "module procedure" in pl/sql?
What is audit logout in sql profiler?
What is the difference between alter trigger and drop trigger statements?
Why is sql important?
Why do we use set serveroutput on?
How do you bind variables in pl sql?
Is it possible to include an insert statement on the same table to which the trigger is assigned?
Which is faster view or stored procedure?