MySQL REPLACE()函数如何替换多个记录中的字符串?

如果要替换多个记录中的字符串,则REPLACE()函数必须将列名称作为第一个参数,即在字符串的位置。这意味着它将用该特定列中的另一个子字符串替换所有子字符串。我们还可以将REPLACE()WHERE子句与UPDATE语句一起使用,以应用条件。通过以下示例进行展示:

示例

mysql> Update Student set Name = REPLACE(Name, 'G','S') WHERE Subject LIKE '%Comp%';
Rows matched: 2 Changed: 2 Warnings: 0

上面的查询替换了Student表的多个记录中的字符串。

mysql> Select Name, Subject from Student;
+---------+-----------+
| Name    | Subject   |
+---------+-----------+
| Saurav  | Computers |
| Aarav   | History   |
| Harshit | Commerce  |
| Saurav  | Computers |
| Yashraj | Math      |
+---------+-----------+
5 rows in set (0.00 sec)
猜你喜欢