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 the usages of sql?
Is it possible to read/write files to-and-from PL/SQL?
What are types of exception?
What is scope of pl sql developer in future?
What is plpgsql language?
The select into statement is most often used to create backup copies of tables or for archiving records?
Explain foreign key in sql?
What do you mean by table in sql?
What are the benefits of pl sql?
What is the use of function "module procedure" in pl/sql?
Is pl sql different from sql?
What is trigger types of trigger?
Give the order of sql select?
How do you drop a trigger?
What is sql procedures and functions?