gpt4 book ai didi

mysql 搜索字符串和数字,如 #654

转载 作者:行者123 更新时间:2023-11-30 23:14:37 25 4
gpt4 key购买 nike

我有一个快速的问题,如何在 mysql 中搜索#some number> 例如

Select * from table where field contains #numbers?

其中 #numbers 代表任何超过四个字符的数字(例如:#123、#345、...)。我应该如何正确操作?

编辑:我得到了我需要的东西

Select * from table where field REGEXP '^#+[0-9]'

可以吗?而且我还需要至少三个字符长

最佳答案

如果您需要数字的长度至少为 3 位,请尝试:

 SELECT * FROM table WHERE field  RLIKE '#[0-9]{3,}'

关于mysql 搜索字符串和数字,如 #654,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18512058/

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