How can return max date row
A b c d e
1 2 1-mar-09 5 10
1 2 10-mar-09 5 10
Only using oracle predefined function. Not user defined.
Output:--
A b c d e
1 2 10-mar-09 5 10
Answer Posted / sivaraman (gasc)
select a,b,c,d,e from tbl_name where c = (select max(c)
from tbl_name)
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What are temporal data types in oracle?
is there a tool to trace queries, like profiler for sql server?
How to create a temporary table in oracle?
Explain drop constraint oracle?
What are the differences between number and binary_float in oracle?
what is Single Byte Overhead...?
What privilege is needed for a user to delete rows from tables in another schema?
Explain oracle’s server parameter file.
Why do I get java.lang.abstractmethoderror when trying to load a blob in the db?
Please explain oracle left join with an example?
Is oracle a programming language?
How to convert dates to characters in oracle?
How do we create privileges in oracle?
What is control file used for?
What are the numeric comparison operations?