SQL Server (Transact-SQL) OR 运算符 用于在 WHERE 子句。如果由 OR 运算符分隔的任何条件为 true,则显示一条记录。
语法
在 SQL Server 中使用 OR 运算符的语法 (Transact-SQL) ) 如下:
SELECT column1, column2, column3, ...
FROM table_name
WHERE condition1 OR condition2 OR condtion3 ....;
示例:
考虑一个数据库,其中包含名为 Employee 的表,其中包含以下记录:
EmpID | Name | City | Age | Salary |
---|---|---|---|---|
1 | John | London | 25 | 3000 |
2 | Marry | New York | 24 | 2750 |
3 | Jo | Paris | 27 | 2800 |
4 | Kim | Amsterdam | 30 | 3100 |
5 | Ramesh | New Delhi | 28 | 3000 |
6 | Huang | Beijing | 28 | 2800 |
选择Employee表中Salary大于2800或的所有记录年龄小于25,查询如下。
SELECT * FROM Employee
WHERE Salary > 2800 OR Age < 25;
这将产生如下所示的结果:
EmpID | Name | City | Age | Salary |
---|---|---|---|---|
1 | John | London | 25 | 3000 |
2 | Marry | New York | 24 | 2750 |
4 | Kim | Amsterdam | 30 | 3100 |
5 | Ramesh | New Delhi | 28 | 3000 |