如何通过在MySQL中删除分隔符和后面的数字来使用当前值的子字符串更新值?

在这里,假设您有一个格式为“ StringSeparatorNumber ”的字符串,例如John / 56989。现在,如果要删除分隔符/后的数字,请使用SUBSTRING_INDEX()。让我们首先创建一个表-

create table DemoTable
(
   StudentName varchar(100)
);

使用插入命令在表中插入一些记录-

insert into DemoTable values('John/56989');
insert into DemoTable values('Carol');
insert into DemoTable values('David/74674');
insert into DemoTable values('Bob/45565');

使用select语句显示表中的所有记录-

select *from DemoTable;

这将产生以下输出-

+-------------+
| StudentName |
+-------------+
| John/56989  |
| Carol       |
| David/74674 |
| Bob/45565   |
+-------------+
4 rows in set (0.00 sec)

以下是使用当前值的子字符串更新值的查询-

update DemoTable set StudentName=substring_index(StudentName,'/',1);
Rows matched :4 Changed :3 Warnings :0

让我们再次检查表记录-

select *from DemoTable;

这将产生以下输出-

+-------------+
| StudentName |
+-------------+
| John        |
| Carol       |
| David       |
| Bob         |
+-------------+
4 rows in set (0.00 sec)
猜你喜欢