gpt4 book ai didi

mysql - 在 MYSQL 查询中将 REGEXP 转换为 LIKE

转载 作者:行者123 更新时间:2023-11-29 05:07:56 25 4
gpt4 key购买 nike

我有如下所示的 MYSQL 查询

select * from table1 where host REGEXP 'host1';

我想使用 LIKE 执行相同的查询请建议如何实现它

最佳答案

试试这个:

select * from table1 where host LIKE '%host1%';

REGEXP 'host1' 将匹配字符串中的任何位置的 host1。要使用 LIKE 运算符表达这一点,我们需要用通配符将 host1 括起来。

关于mysql - 在 MYSQL 查询中将 REGEXP 转换为 LIKE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44898474/

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