I have a log table that records dates.
I want to find out the date of the Second and Third call.
- I get the first call by using MIN(DateCreated)
- I get the last date using MAX(DateCreated). This could also be the second call.
What is the best way to find out the date of the second and third call?
I would just get all 3 rows together in one query
If you do need them one by one, you can use: