Mysql——替换字段中指定字符(replace 函数)

一、简介

函数将字符串中出现的所有子字符串替换为新的子字符串。 REPLACE() 函数是基于字符的替换,并且替换字符串时是区分大小写的。

二、语法

这里是 MySQL REPLACE() 函数的语法:

复制代码
REPLACE(str, from_str, to_str)

参数

str

必需的。 原字符串。

from_str

必需的。 被替换的子字符串。

to_str

必需的。 用来替换的新子字符串。

返回值

REPLACE(str, from_str, to_str) 函数返回 str 中的所有 from_strto_str 替换后的字符串。

  • 当任意一个参数为 NULL 时, REPLACE() 函数将返回 NULL

三、实例

(1)查询

这里列出了几个常见的 REPLACE() 示例。

复制代码
SELECT
    REPLACE('Hello World', 'World', 'Alice'),
    REPLACE('Hello World', 'l', 'L'),
    REPLACE('Hello World', 'h', 'HH')\G

*************************** 1. row ***************************
REPLACE('Hello World', 'World', 'Alice'): Hello Alice
        REPLACE('Hello World', 'l', 'L'): HeLLo WorLd
       REPLACE('Hello World', 'h', 'HH'): Hello World

注意: 由于 REPLACE 执行的是区分大小写的搜索,因此 REPLACE('Hello World', 'h', 'HH') 不会发生任何替换。

(2)更新

UPDATE `table_name`

SET `field_name` = REPLACE (

`field_name`,

'from_str',

'to_str'

)

WHERE

`field_name` LIKE '%from_str%';

该语句可直接将字段field_name中的from_str值更新为to_str。

相关推荐
q***92512 分钟前
Springboot3 Mybatis-plus 3.5.9
数据库·oracle·mybatis
q***474324 分钟前
PostgreSQL 中进行数据导入和导出
大数据·数据库·postgresql
TDengine (老段)1 小时前
MySQL/PG/TDengine 时间范围 SQL 表达式
sql·mysql·tdengine
傻啦嘿哟1 小时前
物流爬虫实战:某丰快递信息实时追踪技术全解析
java·开发语言·数据库
大白的编程日记.1 小时前
【计算网络学习笔记】MySql的多版本控制MVCC和Read View
网络·笔记·学习·mysql
optimistic_chen1 小时前
【Redis 系列】Redis详解
linux·数据库·redis·缓存·xsheel
熊文豪1 小时前
17年稳定运行:金仓数据库如何成为电力行业的“数字基石“
数据库·kingbasees·金仓数据库·电科金仓·kes
r***11331 小时前
Redis--模糊查询--方法实例
数据库·redis·缓存
q***71011 小时前
SQL注入(SQL Injection)攻击原理与防御措施
数据库·sql·oracle
f***R81 小时前
解决bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException
java·数据库·sql