在 MySQL 中使用 CASE WHEN column1 IS NULL THEN NULL ELSE column2 END
為此,你可以使用 CASE 語句。我們首先建立一個表−
mysql> create table DemoTable -> ( -> Name varchar(20), -> Marks1 int, -> Marks2 int -> ); Query OK, 0 rows affected (0.72 sec)
使用 insert 命令向表中插入一些記錄−
mysql> insert into DemoTable values('Chris',45,null); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values('David',null,78); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable values('Bob',67,98); Query OK, 1 row affected (0.14 sec)
使用 select 語句顯示錶中的所有記錄 −
mysql> select *from DemoTable;
這將生成以下輸出 −
+-------+--------+--------+ | Name | Marks1 | Marks2 | +-------+--------+--------+ | Chris | 45 | NULL | | David | NULL | 78 | | Bob | 67 | 98 | +-------+--------+--------+ 3 rows in set (0.00 sec)
以下是對 CASE WHEN 進行實現的查詢−
mysql> select *, -> (case when Marks1 is null then null else Marks2 end ) as Value -> from DemoTable;
這將生成以下輸出 −
+-------+--------+--------+-------+ | Name | Marks1 | Marks2 | Value | +-------+--------+--------+-------+ | Chris | 45 | NULL | NULL | | David | NULL | 78 | NULL | | Bob | 67 | 98 | 98 | +-------+--------+--------+-------+ 3 rows in set (0.00 sec)
廣告