简体   繁体   中英

Using SphinxQL with SphinxSE

Can I actually use sphinxQL with SphinxSE plugin? Like this:

SELECT * FROM t1 WHERE query='SELECT id FROM products GROUP BY region, price';

Nope. Two completely different ways of accessing sphinx.

SphinxSE under the hood uses the SphinxAPI.

SELECT * FROM t1 WHERE query=';select=id;index=products;groupby=attr:region,price';

Although I dont know if the multiple attribute group by will work.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM