Sử dụng SphinxSE http://sphinxsearch.com/docs/current.html#sphinxse-overview
Sau đó sẽ là
SELECT * FROM mysql_table
JOIN (SELECT id FROM sphinx_index WHERE query='keyword') AS match_table
ON match_table.id = mysql_table.id
Mặc dù
SELECT * FROM sphinx_index INNER JOIN mysql_table USING (id) WHERE query='keyword'
ngắn hơn và súc tích hơn. Và tốt hơn duy trì thứ tự kết quả.
Trong đó 'sphinx_index' là một bảng SphinxSE, trỏ đến chỉ mục nhân sư bên dưới.