I have 2 tables, Tags and Certs, in a one-to-many relationship - each tag will have anywhere between 0 and 10+ certs associated with it.
Tags Certs
[Tag] [Other fields] [Tag] [Date] [Length]
A-22 ... A-22 03/05/17 265
P-63 ... A-22 15/02/14 331
... A-22 09/12/12 656
P-63 01/02/12 1024
...
Is there a way to return the most recent, second most recent, third most etc. length for each Tag as different fields?
My ideal end product would look something like:
[Tag] [Most recent length] [Second most recent] [third most] ...
A-22 265 331 656
P-63 1024
...
This issue is especially grating since I recently ported it from MySQL, which has the LIMIT clause which solved this easily. I'm aware there is no direct equivalent (from MS Access Limit), but I'm wondering if there is some other way to achieve what I need.