I just wanted to know if there is an easy way when I have following entries:
++++++++++++++++++
+ id + languages +
++++++++++++++++++
+ 1 + DE +
++++++++++++++++++
+ 2 + DE,EN +
++++++++++++++++++
+ 3 + FR +
++++++++++++++++++
and the value of the parameter in my procedure is 'DE,EN,FR'
that he finds all above entries.
I googled and googled and came to the solution that I have to iterate over all values in the parameter and split them with a SUBSTRING
and make a
FIND_IN_SET(splittedParam, `languages`)
for them.
Is there an easier (with shorter code) way?