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
Point out the difference between user tables and data dictionary?
What is the disadvantage of User defind function?
Is there any function in oracle similar like group_concat of mysql?
if you ctreate table identity
How to login to the server without an instance?
I just want to maintain data like an employee can belongs to 3 or more departments . We can resolve this by using composite key but it avoids normalization rules. So Can anyone tell me how can I maintain data.
Explain rename?
How do I reset a sequence in oracle?
How to assign a tablespace to a users in oracle?
What is a subquery?
What is a sub query and what are the different types of subqueries?
Can a parameter be passed to a cursor?
what is normalisation?what are its uses?
How to create an initialization parameter file?
Where do you use decode and case statements?