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


Please Help Members By Posting Answers For Below Questions

What is on delete restrict?

721


Can you inner join the same table?

708


What is type and rowtype in pl sql?

741


Does pdo prevent sql injection?

693


Write an sql query to select all records from the table?

752






What is sql procedures and functions?

745


what are the nonstandard string types? : Sql dba

803


What jobs use sql?

721


What is a trigger word?

727


How do you modify a column in sql?

728


What are the different types of functions in sql?

759


What is compound trigger?

752


How many sql core licenses do I need?

680


How do I remove all records from a table?

764


How does an execution block start and end in pl sql?

674