基本上,我试图匹配多个具有相同id的单词,没有运气,以下作品:
SELECT id, GROUP_CONCAT(word order by word) as theset, count(*) FROM words
GROUP BY id HAVING theset like '%foo%bar%' or '%bar%foo%';
但我需要在另一个表上连接我需要返回的其余数据,以下内容不起作用:
SELECT words.id, table.id, table.description, words.occurence ,
GROUP_CONCAT(word order by word) as theset, count(*)
FROM words JOIN table
on table.id=words.id
GROUP BY words.id HAVING theset LIKE '%foo%bar%' or '%bar%foo%';
我不确定缺少什么。我已经在网上寻找解决方案了,我知道SQL有很多可用的资源,但我不能指出问题是什么 - 抱歉,如果有相同的问题(我没有看到一个)< / p>