gpt4 book ai didi

mysql - 在 Select mysql 中使用正则表达式

转载 作者:行者123 更新时间:2023-11-28 23:08:33 25 4
gpt4 key购买 nike

我正在寻找一个在 Mysql 中的 SELECT 短语中使用正则表达式的解决方案,例如我有以下记录

title = "title"
description = "this is testing title with id number 342 nice"

现在我想从这条记录中选择标题和 342(注意所有描述都有 number 模式)所以我正在寻找一个选择标题和数字的解决方案在描述字段中。

最佳答案

试试这个

SELECT SUBSTRING_INDEX(SUBSTRING_INDEX(<fieldname>,']',1),'[',-1) AS extracted
FROM <tablename>;

这应该可行

更新:

SELECT title, SUBSTRING_INDEX(SUBSTRING_INDEX(description,']',1),'[',-1) AS extracted
FROM <tablename>;//Replace with your table name here

关于mysql - 在 Select mysql 中使用正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46558799/

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