gpt4 book ai didi

mysql - 我可以在 MySQL 查询中使用 preg_replace 或 regex 吗?

转载 作者:太空宇宙 更新时间:2023-11-03 12:34:59 24 4
gpt4 key购买 nike

我有两个要加入的表。问题是,数据需要一些修整。

== Product Description

id sku price

1 674_orange 45.99
2 645_black 59.99
5 592_rubyred 69.99

== Product Attributes

id sku description

11 674 lorem ipsum long text description of 674
22 645 lorem ipsum keywords for this item
33 592 lorem ipsum colours on this item

我想在 SKU 上加入这些表格。但是我需要进行替换,因为我认为 LIKE% 不够准确?

最佳答案

使用

select *
from description d
join attributes a on a.sku = substring(sku, 1, locate('_', sku)-1)

locate('_', sku) 获取字符串中 _ 的位置

substring(sku, 1, locate('_', sku)+1)sku 中提取一个子串。子字符串将从位置 1 开始,并在 _ 之前的位置结束。这就是使用 -1 的原因。

SQLFiddle demo

关于mysql - 我可以在 MySQL 查询中使用 preg_replace 或 regex 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13582436/

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