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
How would you go about verifying the network name that the local_listener is currently using?
Is oracle a programming language?
Explain alias?
What is a nested table?
Explain oracle’s server parameter file.
How to rebuild an index in oracle?
How to create a stored function in oracle?
How to add another datafile to a tablespace?
What do you mean by a database transaction & what all tcl statements are available in oracle?
What are the differences between interval year to month and interval day to second?
What is the string concatenation operator in oracle?
What privilege is needed for a user to connect to oracle server?
How a tablespace is related to data files?
How to create an initialization parameter file?
15. Display the item_cost and then truncate it to the nearest hundred, ten, unit, tenth and hundredth.