I really hope someone can help me with my problem. I would like to implement a match with a request using group_concat.
I need something like this:
Select c.id, p.place from content c join place p on p.object_id = c.id where match(group_concat(p.place)) AGAINST('"string1" "string2" "string3"', IN BOOLEAN MODE) and not match (group_concat(p.place)) AGAINST('string4', IN BOOLEAN MODE)
I tried to use also the availability of the sentence, but it does not work.
At that moment when I have no idea how I can solve this. Can someone help me deal with this issue? Many thanks.
Katie source share