我希望在 SphinxQL 中加入相同的索引
select * from my_index w 内部连接 (select test_id,max(val1) from my_index where match('xxxx') group by test_id) as w2 在 w.test_id=w2.test_id 和 w.val1=w2.val1 上;
但它出现语法错误。
我的 sphinxServer 服务器版本是 2.0.6-id64-release。怎么了?Sphinx 或 SphinxQL 是否支持使用子查询进行内部连接?