全文未显示艺术家“ AC / DC”的结果

时间:2019-05-09 14:01:57

标签: mysql full-text-search symbols

当用户在我的搜索栏中搜索“ AC / DC”并触发了全文搜索查询时,即使我的主列表中有7首歌曲带有艺术家“ AC / DC”。

我试图自己修改搜索以获取一些结果。 我尝试过的搜索: -"AC/DC" -AC/DC -+AC/DC -AC*DC

还有很多我不记得了。

$internal = $this->db->all(
    "SELECT   
        id, 
        name, 
        type, 
        artist, 
        duration, 
        image, 
        explicit, 
        play_count, 
        autoplay, 
        popularity, 
        last_played 
    FROM
        spotify_master 
    WHERE
        Match(name, artist) against (? IN boolean mode) 
    ORDER BY 
        match(name, artist) against (? IN boolean mode) DESC 
    LIMIT 20", [$terms, $terms]);

$terms等于在搜索框中键入的内容。

我希望所有AC / DC歌曲都能返回,但我没有得到回报。

这是数据库中AC / DC歌曲的屏幕截图。

enter image description here

0 个答案:

没有答案