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
Answers were Sorted based on User's Feedback
Answer / rameshganesan
Select (Case
When a = Least Then (select 'A'||CHR(10)||'='||CHR(10)||ListAgg(a,CHR(10)) Within Group(order by a) from Least_Col)
When b =Least Then (select 'B'||CHR(10)||'='||CHR(10)||ListAgg(b,CHR(10)) Within Group(order by b) from Least_Col)
Else (select 'C'||CHR(10)|| '='||CHR(10)||ListAgg(c,CHR(10)) Within Group(order by c) from Least_Col) end)ab
From (Select count(a) a,count(b) b,count(c) c,greatest(count(a),count(b),count(c)) Least From Least_Col);
| Is This Answer Correct ? | 1 Yes | 0 No |
How to unlock the sample user account in oracle?
What is an oracle transaction?
how to create a new database in oracle?
What does `(+)` do in a where clause?
Explain how are indexes update?
How to create a stored program unit?
What is a nvl function?
What is private procedure oracle?
How to use "in" parameter properly?
In which dictionary table or view would you look to determine at which time a snapshot or MVIEW last successfully refreshed?
difference between imlicit cursor and explicit cursor ?
If any one has information regarding interview of NIC (National Informatics Centre),it would be of great help...