改进我的sql搜索查询

vpfxa7rd  于 2021-06-24  发布在  Mysql
关注(0)|答案(1)|浏览(342)

有人能帮我改进一下sql查询吗。这是一个网站搜索。以下是查询:

SELECT j_author.author_id as authorID, author_name, author_description, author_cat, author_city, author_state, points, (SELECT SUM(rate_value) FROM j_rating WHERE j_rating.author_id = authorID ) AS rating_value
    FROM j_author
    JOIN j_author_category ON j_author.author_cat = j_author_category.author_cat_id
    WHERE author_name LIKE '%" . $keyword . "%'
    OR author_city LIKE '%" . $keyword . "%'
    ORDER BY rating_value DESC

这很管用,但不是我想要的。例如,如果我搜索'edu',有一个名为educate的作者或城市,它会返回作者或城市。但如果搜索“受过教育的人”,则不会返回结果。
我也尝试过使用:

SELECT j_author.author_id as authorID, author_name, author_description, author_cat, author_city, author_state, points, (SELECT SUM(rate_value) FROM j_rating WHERE j_rating.author_id = authorID ) AS rating_value,             
MATCH(j_author.author_name, j_author.author_city) AGAINST ('$keyword' IN BOOLEAN MODE) AS score
FROM j_author  
JOIN j_author_category ON j_author.author_cat = j_author_category.author_cat_id
WHERE MATCH(j_author.author_name, j_author.author_city) AGAINST ('$keyword' IN BOOLEAN MODE)
ORDER BY `score` DESC

但是每次我使用这个方法,当我搜索'edu'时,它都不会返回任何结果。
我想要的是,如果“受过教育的人”是输入的搜索关键字,它应该使用“受过教育的人”和“人”作为单独的关键字进行搜索,并返回匹配任何关键字的结果。此外,当'edu'是关键字时,它应该返回所有作者的姓名或城市中有edu的内容

hrysbysz

hrysbysz1#

如果无法在将值传递到查询之前分解文本,则可能需要这样的内容:
transact-sql:如何标记字符串?
如果您将查询分解为预先确定的字符,并对每个“令牌”执行查询,您应该能够完成您的目标。

相关问题