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
How many tables can you join in sql?
what is try_catch block in procedure
What is constant in pl sql?
Are dml statements autocommit?
What does where 1 1 mean in sql?
If i can use sys.check_constraints to display my constraints from my database using sql server 2005, how can i display then if i am using sql server 2000????
how do you tune the slow running queries in oracle db , explain the methodology
What is difference between ms sql and mysql?
How do you modify a trigger?
What is an oracle stored procedure?
how to add a new column to an existing table in mysql? : Sql dba
what are the limitations of identity column? : Transact sql
Which language is used in sql?
How are sql commands classified?
Is it possible to update views?