in my table one of column is Status and Date if suppose i want to get max(date) for each state then i can use group by of date
But here my problem is i want to get max(date) for each transaction NOT FOR EACH STATUS
that means, my status values like ,create / modify / modify / submit / reject / modify / submit / reject / modify / submit now i want to get each transaction along with max date like
- create /(only one) modify / submit / reject / (again) modify /submit / reject / modify / Submit...
Can any one please suggest me to find solution for the above.
Thanks in advance
Joe