I really hope that someone can help me with my problem. I would like to realize a match against query with 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 having clause but doesn't work.
In the moment i have no idea how i can solve this. Could someone help me whit this problem? Thanks a lot.