Mysql – SQL GROUP BY while selecting the latest record + extra conditions
I am trying to figure out what would be the most efficient way of achieving the following: I have two tables: word_translations(id, word_id, language_id) and translations(id, text, word_translation_id, created_at, updated_at, user_id) So there is a one-to-many relationship between word_translations and…