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
Differentiate between post-database commit and post-form commit?
Explain the types of exception?
What language does oracle use?
What is a view and how is it different from a table?
What is a package ? What are the advantages of package ?
What are the various types of snapshots ?
What is merge in oracle?
How to convert numbers to characters in oracle?
22. Display the order number, number of lines in the order, total number of items and total value for all orders that have a total value greater than $100
What is the usage of save points in oracle database?
What happens if the imported table already exists?
What privilege is needed for a user to create indexes in oracle?
What is data block in Oracle?
Explain about integrity constraint?
Explain the difference between replace() and translate() functions in oracle?