如何從同一列中選擇不同的值並使用 MySQL 在不同列中將它們顯示出來?
若要根據條件選擇不同的值,請使用 CASE 語句。我們首先建立一個表 −
mysql> create table DemoTable ( Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, Name varchar(40), Score int ) ; Query OK, 0 rows affected (0.54 sec)
使用 insert 命令在表中插入一些記錄 −
mysql> insert into DemoTable(Name,Score) values('Chris',45); Query OK, 1 row affected (0.24 sec) mysql> insert into DemoTable(Name,Score) values('David',68); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable(Name,Score) values('Robert',89); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable(Name,Score) values('Bob',34); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable(Name,Score) values('Sam',66); Query OK, 1 row affected (0.22 sec)
使用 select 語句從表中顯示所有記錄 −
mysql> select *from DemoTable;
這將產生以下輸出 −
+----+--------+-------+ | Id | Name | Score | +----+--------+-------+ | 1 | Chris | 45 | | 2 | David | 68 | | 3 | Robert | 89 | | 4 | Bob | 34 | | 5 | Sam | 66 | +----+--------+-------+ 5 rows in set (0.00 sec)
以下是對同一列中選擇不同值的查詢 −
mysql> select Score, case when Score < 40 then Score end as ' Score Less than 40', case when Score between 60 and 70 then Score end as 'Score Between 60 and 70 ', case when Score > 80 then Score end as 'Score greater than 80' from DemoTable;
這將產生以下輸出 −
+-------+--------------------+--------------------------+-----------------------+ | Score | Score Less than 40 | Score Between 60 and 70 | Score greater than 80 | +-------+--------------------+--------------------------+-----------------------+ | 45 | NULL | NULL | NULL | | 68 | NULL | 68 | NULL | | 89 | NULL | NULL | 89 | | 34 | 34 | NULL | NULL | | 66 | NULL | 66 | NULL | +-------+--------------------+--------------------------+-----------------------+ 5 rows in set, 1 warning (0.03 sec)
廣告