The table has 3 columns 4 rows. The output is which column has least null values( A COL SHOULD BE THE OUTPUT)
Write the query plz.
A B C
================
1 NULL 2
NULL 3 4
NULL 5 6
7 NULL NULL
O/P
C
=
2
4
6
Answer Posted / ravi gali
select c from tablename
where c IS NOT NULL;
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
What is a dead lock in oracle?
How to find out what oracle odbc drivers are installed?
Please explain compound trigger in oracle?
What is redo log?
What is MTTR advisor in Oracle?
What is tns entry?
What happens if variable names collide with table/column names?
What is oracle database client?
Is oracle an operator?
How can you use check constraints for self referential integrity?
What is blob datatype?
What are the uses of a database trigger?
What are the uses of Database Trigger ?
definition of cluster and non-clustered index?
How do I escape a reserved word in oracle?