如何在 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)
廣告