gpt4 book ai didi

mysql - mysql中此字符串的正则表达式

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

我有这些行:

db666405.gallery
db666405.table1
db666405.table2

我想捕获点后的单词。

如何在mysql中使用正则表达式?

我尝试过使用 ^\.[.],但我没有成功。

SELECT *
FROM `table`
WHERE `column` REGEXP '^\\.'

最佳答案

MySQL 正则表达式不“捕获”任何东西。仅用于匹配; MySQL 不支持正则表达式替换。

我假设您想返回点后的部分:

select *, substring(`column`, instr(`column`, '.') + 1) as ext
from `table`
where `column` like '%.?%'

关于mysql - mysql中此字符串的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41880159/

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