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 are pl sql procedures?
What is scalar function?
What is sql procedures and functions?
What is Difference Between Unique and Primary Key Constraints?
What is cross join sql?
Does sql*plus also have a pl/sql engine?
Explain how you can copy a file to file content and file to pl/sql table in advance pl/sql?
i have a column which may contain this kind of value: 123*67_80,12*8889_5,34*8_874 ,12*7_7 (can contain space before a comma, and this string length can be anything) now i want to split this value into two column like: column1: 123*67,12*8889,34*8,12*7 column2: 80,5,874,7 use function for this
What is multiple columns?
How to return multiple rows from the stored procedure?
Advantages and disadvantages of stored procedure?
What is a dynamic query?
Is it possible to create the following trigger: before or after update trigger for each row?
What is sap sql anywhere?
what is a foreign key ? : Sql dba