在 MySQL CASE 表达式中如何使用“OR”条件?\n
在 MySQL CASE 表达式中设置一个类似于“OR”的条件。我们首先创建一个示例表。
以下是查询
mysql> create table caseOrConditionDemo -> ( -> Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> Name varchar(100), -> Score int -> ); Query OK, 0 rows affected (0.49 sec)
以下是使用 insert 命令在表中插入一些记录的查询
mysql> insert into caseOrConditionDemo(Name,Score) values('Larry',85);
Query OK, 1 row affected (0.18 sec)
mysql> insert into caseOrConditionDemo(Name,Score) values('Sam',74);
Query OK, 1 row affected (0.20 sec)
mysql> insert into caseOrConditionDemo(Name,Score) values('Mike',76);
Query OK, 1 row affected (0.16 sec)
mysql> insert into caseOrConditionDemo(Name,Score) values('Carol',65);
Query OK, 1 row affected (0.20 sec)以下是使用 select 命令从表中显示记录的查询
mysql> select *from caseOrConditionDemo;
这将产生以下输出
+----+-------+-------+ | Id | Name | Score | +----+-------+-------+ | 1 | Larry | 85 | | 2 | Sam | 74 | | 3 | Mike | 76 | | 4 | Carol | 65 | +----+-------+-------+ 4 rows in set (0.00 sec)
以下是使用 MySQL CASE 表达式的一个类似于“OR”的条件的查询
mysql> select Id,Name,Score, -> case when Score > 75 then 'Better Score' -> when Score > 70 then 'Good Score' -> else 'Not Good Score' -> end as 'Performance' -> from caseOrConditionDemo;
这将产生以下输出
+----+-------+-------+----------------+ | Id | Name | Score | Performance | +----+-------+-------+----------------+ | 1 | Larry | 85 | Better Score | | 2 | Sam | 74 | Good Score | | 3 | Mike | 76 | Better Score | | 4 | Carol | 65 | Not Good Score | +----+-------+-------+----------------+ 4 rows in set (0.04 sec)
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
安卓
Python
C 编程
C++
C#
MongoDB
MySQL
JavaScript
PHP