gpt4 book ai didi

php - MySQL 和 PHP 在表中搜索一个字符串但替换另一个字符串

转载 作者:可可西里 更新时间:2023-11-01 08:29:49 27 4
gpt4 key购买 nike

所以基本上我要做的是在名为 "product_description" 的表中搜索找到行 'name' 并在名称中搜索字符串 能源

假设我有一种来自美国的名为能量饮料的产品。我知道如何搜索能量并替换它:

$sql = "UPDATE product_description SET name = REPLACE(name, 'Energy', 'Best Energy')";

有没有办法搜索 Energy 并将 America 替换为 Europe

最佳答案

只需使用带 LIKE 的 WHERE 子句:

UPDATE product_description
SET name = REPLACE(name, 'America', 'Europe')
WHERE name LIKE '%Energy%'

关于php - MySQL 和 PHP 在表中搜索一个字符串但替换另一个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30104143/

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