PHP MySQL Search And Order By Relevancy

后端 未结 5 606
[愿得一人]
[愿得一人] 2020-12-09 19:12

I know how to do a regular php mysql search and display the results. However, because of the nature of what I\'m trying to accomplish I need to be able to sort by relevancy.

5条回答
  •  情歌与酒
    2020-12-09 20:03

    SELECT field2, field3, ..., MATCH(field1, field2) AGAINST ("search string") AS relevance WHERE MATCH(field1, field2) AGAINST "search string" ORDER BY relevance DESC LIMIT 0,10
    

    In the result set, there will be a field "relevance", which is used here to sort the results.

提交回复
热议问题