I have a column in database wich represents the languages as shown below:
userId languages
1 de,fr,en
2 de,fr
3 de
I want to filter the results based on multiple languages, so for example I need the users who speaks de and fr (both).
I tried to use FIND_IN_SET but the first parameter accespts only one language.
I want to mention that the table is a third party and the filter paremeters are dynamic. The example is just some mock data, the explain the principle