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
How to assign data of the deleted row to variables?
How to install oracle odbc drivers?
What do you mean by a tablespace?
Explain the use of compress option in exp command.
What is a data dictionary and how can it be created?
How do we create privileges in oracle?
What are the differences between char and varchar2 in oracle?
What exactly do quotation marks around the table name do?
How to convert a string to a date in oracle database?
How to call a stored function in oracle?
What are the parameters that we can pass through a stored procedure?
Can you assign multiple query result rows to a variable?
How to lock and unlock a user account in oracle?
If any one has information regarding interview of NIC (National Informatics Centre),it would be of great help...
What is logical backup in oracle?