我真的希望有人可以帮助我解决我的问题。我想用 group_concat 实现与查询的匹配。
我需要这样的东西:
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)
我尝试使用也有子句但不起作用。
目前我不知道如何解决这个问题。有人可以帮我解决这个问题吗?非常感谢。