select col1,col2,col3,col4,col5 from table1
where (col1 like '%keyword%'
or col2 like '%keyword%'
or col3 like '%keyword%'
or col4 like '%keyword%'
or col5 like '%keyword%')
AND start_date IS NULL
AND end_date IS NULL
ORDER BY date_created limit 10;
我想將上述查詢轉換爲使用MATCH AGAINST
函數。像%關鍵字%轉換爲匹配(針對)
請嘗試首先參考本文檔:'http:// dev.mysql.com/doc/refman/5.1/en/fulltext-search.html#function_match'並查看您可以嘗試執行的操作。 。 –