Multilingual page – Get row with language='de' if exists else get row with language='en' from MySQL DB
I have the following SQL table called 'content': language contentId text en 1 Hello de 1 Hallo en 2 World My goal is to query all rows which match language='de'. But if a row with language='en' exists which has no…