如何基于 MySQL 中的条件替换记录?


若要设置条件,请使用 MySQL CASE 语句。我们首先来创建一个 –

mysql> create table DemoTable1481
   -> (
   -> PlayerScore int
   -> );
Query OK, 0 rows affected (0.42 sec)

使用 insert 向表中插入一些记录 –

mysql> insert into DemoTable1481 values(454);
Query OK, 1 row affected (0.41 sec)
mysql> insert into DemoTable1481 values(765);
Query OK, 1 row affected (0.14 sec)
mysql> insert into DemoTable1481 values(890);
Query OK, 1 row affected (0.09 sec)

使用 select 显示表中的所有记录 –

mysql> select * from DemoTable1481;

这将会产生以下输出 –

+-------------+
| PlayerScore |
+-------------+
|         454 |
|         765 |
|         890 |
+-------------+
3 rows in set (0.00 sec)

以下是用于替换 MySQL 中记录的查询 –

mysql> update DemoTable1481
   -> set PlayerScore= case when PlayerScore=454 then 1256
   -> when PlayerScore=765 then 1865
   -> when PlayerScore=890 then 3990
   -> end
   -> ;
Query OK, 3 rows affected (0.17 sec)
Rows matched: 3  Changed: 3 Warnings: 0

让我们再次检查表记录 –

mysql> select * from DemoTable1481;

这将会产生以下输出 –

+-------------+
| PlayerScore |
+-------------+
|        1256 |
|        1865 |
|        3990 |
+-------------+
3 rows in set (0.00 sec)

更新于: 12-Nov-2019

682 次浏览

开启你的 职业生涯

通过完成课程获得认证

立即开始
广告