I have one doubt. I need to find what is the latest occurrence for a specific list of Customers, let's say to simplify, I need it for 3 Customers out of 100. I need to check when it was the last time each of them got a bonus. The table would be:
EVENT_TBL
Fields: Account ID
, EVENT_DATE
, BONUS ID
, ....
Can you suggest a way to grab the latest (MAX
) EVENT DATE
(that means one row each)
I'm using SELECT...IN
to specify the Account ID but not sure how to use MAX
, Group BY
etc etc (if ever needed).