wirte a query to remove null? following table are
col1 col2 col3
dinesh null null
null suresh null
null null prakesh
i want the output like
col1 col2 col3
dinesh suresh prkaesh
Answer Posted / kart
select max(col1) col1,max(col2) col2,max(col3) col3
from table;
col1 col2 col3
dinesh suresh prkaesh
| Is This Answer Correct ? | 11 Yes | 4 No |
Post New Answer View All Answers
How subquery works in sql?
Why schema is used in sql?
How does join work in sql?
Is full outer join same as cross join?
What are variables in pl sql?
What are pl/sql cursor exceptions?
What are the advantages of pl sql?
How to write a single statement that concatenates the words ?hello? And ?world? And assign it in a variable named greeting?
What is data control language (dcl)?
Define concurrency control. : Transact sql
What are the different types of dbms?
What is sql table?
What are the features of pl sql?
What is the difference between partitioning and sharding?
What are types of exception?