Forum Moderators: open
I have 2 tables with the following fields
1. articles
(id, text, original_language)
PRIMARY KEY 'id'
2. article_translations(original_article_id, language, translated_text)
PRIMARY KEY ('original_article_id, language')
Suppose I have 4 languages available to be translated: 'en', 'de', 'fr' and 'it' (article_translations.language is of ENUM data type
- Each time a new article is created, a 'original_language' must be specified.
- Each time a new translation is created, a 'language' must be selected and this is apparently different from the article's original language
How can I find all the articles that have been translated to all the languages?
Regards