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
What is rename command in sql?
What is sql entity?
How to return an array from java to pl/sql?
What is coalesce sql?
What are the benefits of pl sql?
What is a call statement? Explain with an example.
How do you optimize a stored procedure in sql?
what is acid property in database? : Sql dba
Mention what is the function that is used to transfer a pl/sql table log to a database table?
how to check server status with 'mysqladmin'? : Sql dba
Which type of cursor is used to execute the dml statement?
Is pl sql a scripting language?
How do I count rows in sql?
What is ttitle and btitle?
How does sql*loader handles newline characters in a record? : aql loader