gpt4 book ai didi

mysql - 具有多个 ORed LIKE 的 SELECT 的替代方案

转载 作者:行者123 更新时间:2023-11-29 04:27:26 27 4
gpt4 key购买 nike

我有“SELECT ... WHERE column LIKE 'i12.3%' OR column LIKE 'i4.5%' OR column LIKE 'i16.7%' OR ...

我正在寻找类似的东西

column in ('i12.3%', 'i4.5%', 'i6,7%')

但是“in”不适用于通配符

最佳答案

唯一可能起作用的是使用 regular expressions :

WHERE column REGEXP '^i(12\.3|4\.5|6,7)%'

但许多人发现正则表达式难以编写和阅读。

关于mysql - 具有多个 ORed LIKE 的 SELECT 的替代方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8716592/

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