MySQL 查询通过数字增量值(例如 John1、John2、John3 等)更新列中的所有值。
要将列中的所有值更新为 John1、John2 等,你需要设置增量值 1、2、3 等,并将它们串联到记录中。让我们首先创建一个表 -
mysql> create table DemoTable ( StudentId varchar(80) ); Query OK, 0 rows affected (0.50 sec)
使用 insert 命令在表中插入一些记录。这里,对于我们的示例,我们设置了类似的名称 -
mysql> insert into DemoTable values('John'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values('John'); Query OK, 1 row affected (0.08 sec) mysql> insert into DemoTable values('John'); Query OK, 1 row affected (0.07 sec) mysql> insert into DemoTable values('John'); Query OK, 1 row affected (0.07 sec) mysql> insert into DemoTable values('John'); Query OK, 1 row affected (0.08 sec)
使用 select 语句显示来自该表中的所有记录 -
mysql> select *from DemoTable;
这将产生以下输出 -
+-----------+ | StudentId | +-----------+ | John | | John | | John | | John | | John | +-----------+ 5 rows in set (0.00 sec)
以下是要使用数字增量值更新/串联所有名称的查询 -
mysql> update DemoTable,(select @row := 0) r set StudentId =concat('John',@row := @row+ 1); Query OK, 5 rows affected (0.11 sec) Rows matched: 5 Changed: 5 Warnings: 0
让我们再次检查表记录 -
mysql> select *from DemoTable;
这将产生以下输出 -
+-----------+ | StudentId | +-----------+ | John1 | | John2 | | John3 | | John4 | | John5 | +-----------+ 5 rows in set (0.00 sec)
广告