gpt4 book ai didi

mysql - 将 %keyword% 转换为匹配(反对)

转载 作者:行者123 更新时间:2023-11-30 00:10:00 28 4
gpt4 key购买 nike

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 函数。

最佳答案

我猜你是说某事。像那样?但正如 @Yohanes Khosiawan 所说,您也可以自行查阅文档。

SELECT col1,col2,col3,col4,col5 
FROM table1
WHERE MATCH(col1, col2, col3, col4, col5) AGAINST ('+keyword')
AND start_date IS NULL
AND end_date IS NULL
ORDER BY date_created limit 10;

关于mysql - 将 %keyword% 转换为匹配(反对),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24155660/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com