繁体   English   中英

MySQL全文搜索多列未提供预期结果

[英]MySQL fulltext search over multiple columns does not deliver the expected results

我有一个名为“上载”的表格。 这些列是ID,日期,last_update,描述,标签。 我添加了全文索引“ description_tags”,其中包括列说明和标签。 表格式为MyISAM。 如果这可能是问题,我正在使用USBWebserver。

现在,我尝试选择其中具有提供的GET变量的上载。

MATCH (description,tags) AGAINST ("'.urldecode($_GET['tags']).'")

但是结果的问题是:搜索“ lorem”时没有结果,但是在查询中添加IN BOOLEAN MODE时却没有结果。 “ Lorem”实际上位于描述列中。 在标签列中搜索关键字没有这个问题。 当我在描述表中搜索“ moree”时,甚至更有趣/烦恼,无论是否使用布尔模式,我都会得到结果...

这里有什么问题? 我没看到

更新资料

if ( $upload_display_sort == 'popular' )//sort by popularity

$query =    //select 'u' (a new defined variable?)
            'SELECT u.* '.
            //from the following table
            'FROM '.
            //uploads table as variable u
            'uploads u '.
            //join the following table
            'LEFT OUTER JOIN '.
            //select the column upload_id, count all columns into variable 'num' ???
            '(SELECT upload_id, COUNT(*) AS num '.
            //from the favorites table as variable f
            'FROM favorites f '.
            //and group it by the upload_id in the favorites table
            'GROUP BY upload_id) '.
            //what does this do? combine rows where the u.id == f.upload_id ???
            'f ON u.id = f.upload_id';

else $query = 'SELECT * FROM uploads';//select all from uploads



$query .=   ' WHERE online_state = 1';//select all online uploads



//FILTER FAVORITES

if  ($upload_display_sort == 'favorites' and !empty($favorites_ids))

$query .= ' AND id IN ('.implode(',', $favorites_ids).')';//returns 1,2,3,4,5

elseif  ($upload_display_sort == 'favorites' and empty($favorites_ids))

$query .= ' AND id IN (0)';//no upload id is 0



//FILTER SEARCH

if  (   isset($_GET['tags'])    )

$query .= ' AND MATCH (description,tags) AGAINST ("'.urldecode($_GET['tags']).'" IN BOOLEAN MODE)';



//FILTER DATE

if  (   isset($_GET['timeframe']    )

    and (   $_GET['timeframe'] == '3days'

        or  $_GET['timeframe'] == '2weeks'

        or  $_GET['timeframe'] == '3months')    )

{

    $end_date = time();//current time in unix format

    switch  (   $_GET['timeframe']  )

    {
        case '3days':   $start_date = strtotime('-3 days',$end_date);   break;
        case '2weeks':  $start_date = strtotime('-2 weeks',$end_date);  break;
        case '3months': $start_date = strtotime('-3 months',$end_date); break;
        default:        $start_date = strtotime('');    break;//1970-01-01 01:00:00
    }

    $end_date = date("Y-m-d H:i:s", $end_date);//current time in mysql format

    $start_date = date("Y-m-d H:i:s", $start_date);//end time in mysql format

    $query .= ' AND last_update BETWEEN "'.$start_date.'" AND "'.$end_date.'"';

}



//ORDER

$query .= ' ORDER BY';

if ( $upload_display_sort == 'popular' )//sort by popularity

$query .= ' f.num DESC,';

$query .= ' last_update DESC, id DESC';

您的测试数据可能不完整。 请注意以下文档

出现在50%或更多行中的单词被认为是通用的,并且不匹配。

但是BOOLEAN MODE搜索的不同之处在于:

他们不使用50%阈值。

我猜“ lorem”出现在50%或更多的行中。

BOOLEAN MODE全文搜索不会通过降低相关性来自动排序。 您需要像这样对它们自己进行排序:

SELECT *, MATCH (description,tags) AGAINST ("lorem") AS relevance
FROM uploads
WHERE MATCH (description,tags) AGAINST ("lorem" IN BOOLEAN MODE)
ORDER BY relevance DESC

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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