I have joined a few tables in a MySQL query and they are linked by employee id number.
The ID number is unique in tables A and B but have multiple rows in table C with a date (stored as a string) being unique for each entry.
I need to identify the most recent date for each employee ID number in table C and LIMIT table C to one entry per ID number (the most recent obviously).
I am unsure how to set the LIMIT to 1 for each individual employee ID number.
Your help is appreciated.