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
What is difference between sql function and stored procedure?
Show how functions and procedures are called in a pl/sql block.
How can I see all tables in sql?
What is difference between db2 and sql?
Does oracle roll back the transaction on an error?
What is delimiter sql?
How to generate a salary slip like jan 1000 1000 feb 1000 2000 ... dec 1000 12000
What are three advantages to using sql?
Will truncate release space?
What are the parameter modes supported by pl/sql?
Explain how can you save or place your msg in a table?
discuss about myisam index statistics collection. : Sql dba
What is normalization in a database?
If a cursor is open, how can we find in a pl/sql block?
How many primary keys can a table have?