Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

SQL 教程

SQL 主页 SQL 简介 SQL 语法 SQL 选择 SQL 选择 Distinct SQL Where SQL Order By SQL And SQL Or SQL Not SQL Insert Into SQL Null 值 SQL Update SQL Delete SQL Select Top SQL 聚合函数 SQL Min 和 Max SQL Count SQL Sum SQL Avg SQL Like SQL 通配符 SQL In SQL Between SQL 别名 SQL 连接 SQL 内连接 SQL 左连接 SQL 右连接 SQL 全连接 SQL 自连接 SQL Union SQL Group By SQL Having SQL Exists SQL Any, All SQL Select Into SQL Insert Into Select SQL Case SQL Null 函数 SQL 存储过程 SQL 注释 SQL 运算符

SQL 数据库

SQL 创建数据库 SQL 删除数据库 SQL 备份数据库 SQL 创建表 SQL 删除表 SQL 修改表 SQL 约束 SQL 非空 SQL 唯一 SQL 主键 SQL 外键 SQL 检查 SQL 默认值 SQL 索引 SQL 自动增量 SQL 日期 SQL 视图 SQL 注入 SQL 托管 SQL 数据类型

SQL 参考资料

SQL 关键字 MySQL 函数 SQL Server 函数 MS Access 函数 SQL 快速参考

SQL 例子

SQL 例子 SQL 编辑器 SQL 测验 SQL 练习 SQL Server SQL 集训营 SQL 证书

SQL OR 运算符


SQL OR 运算符

The WHERE 子句可以包含一个或多个 OR 运算符。

The OR 运算符用于根据多个条件筛选记录,例如,您想要返回所有来自德国的客户,也包括来自西班牙的客户

示例

选择所有来自德国或西班牙的客户

SELECT *
FROM Customers
WHERE Country = 'Germany' OR Country = 'Spain';
自己尝试 »

语法

SELECT column1, column2, ...
FROM table_name
WHERE condition1 OR condition2 OR condition3 ...;


OR vs AND

The OR 运算符如果任何条件为 TRUE,则显示记录。

The AND 运算符如果所有条件都为 TRUE,则显示记录。


演示数据库

下面是示例中使用的 Customers 表的选取部分

CustomerID CustomerName ContactName Address City PostalCode Country
1

Alfreds Futterkiste Maria Anders Obere Str. 57 Berlin 12209 Germany
2 Ana Trujillo Emparedados y helados Ana Trujillo Avda. de la Constitución 2222 México D.F. 05021 Mexico
3 Antonio Moreno Taquería Antonio Moreno Mataderos 2312 México D.F. 05023 Mexico
4

Around the Horn Thomas Hardy 120 Hanover Sq. London WA1 1DP UK
5 Berglunds snabbköp Christina Berglund Berguvsvägen 8 Luleå S-958 22 Sweden


至少有一个条件必须为真

以下 SQL 语句选择 Customers 中的 City 列的值为“Berlin”或“London”, CustomerName 以字母“G”开头,或 Country 为“Norway”的所有字段

示例

SELECT * FROM Customers
WHERE City = 'Berlin' OR CustomerName LIKE 'G%' OR Country = 'Norway';
自己尝试 »

组合 AND 和 OR

您可以组合 ANDOR 运算符。

以下 SQL 语句选择所有以“G”或“R”开头的来自西班牙的客户。

确保使用括号以获得正确的结果。

示例

选择所有以“G”或“R”开头的来自西班牙的客户

SELECT * FROM Customers
WHERE Country = 'Spain' AND (CustomerName LIKE 'G%' OR CustomerName LIKE 'R%');
自己尝试 »

没有括号,select 语句将返回所有以“G”开头的来自西班牙的客户,加上所有以“R”开头的客户,无论国家值是什么

示例

选择所有客户,他们要么
来自西班牙,并以“G”开头,或者
以字母“R”开头

SELECT * FROM Customers
WHERE Country = 'Spain' AND CustomerName LIKE 'G%' OR CustomerName LIKE 'R%';
自己尝试 »

通过练习测试自己

练习

选择 City 列的值为 'Berlin' 或 'London' 的所有记录。

 * FROM Customers
 City = 'Berlin'
  = '';

开始练习


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.