用于将 ENUM('M', 'F') 选作“男”或“女”的 MySQL 查询?
您可以使用 IF() 实现此目的。我们首先创建一个表。此处的其中一列具有 ENUM 类型
mysql> create table DemoTable ( UserId int, UserName varchar(40), UserGender ENUM('M','F') ); Query OK, 0 rows affected (1.11 sec)
使用 insert 命令在表中插入记录 −
mysql> insert into DemoTable values(1,'John','M'); Query OK, 1 row affected (0.20 sec) mysql> insert into DemoTable values(2,'Maria','F'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values(3,'David','M'); Query OK, 1 row affected (0.20 sec) mysql> insert into DemoTable values(4,'Emma','F'); Query OK, 1 row affected (0.15 sec)
使用 select 语句显示表中的所有记录 −
mysql> select *from DemoTable;
这将生成以下输出 −
+--------+----------+------------+ | UserId | UserName | UserGender | +--------+----------+------------+ | 1 | John | M | | 2 | Maria | F | | 3 | David | M | | 4 | Emma | F | +--------+----------+------------+ 4 rows in set (0.00 sec)
以下是将 ENUM('M', 'F') 选作 'Male' 或 'Female' 的查询−
mysql> SELECT UserId,UserName,IF(UserGender='F','Female', 'Male') AS `UserGender` from DemoTable;
这将生成以下输出−
+--------+----------+------------+ | UserId | UserName | UserGender | +--------+----------+------------+ | 1 | John | Male | | 2 | Maria | Female | | 3 | David | Male | | 4 | Emma | Female | +--------+----------+------------+ 4 rows in set (0.00 sec)
广告