The SQL "AND" condition and SQL "OR" condition can be combined in a single SQL statement. It can be used in any valid SQL statement - SQL SELECT statement, SQL INSERT statement, SQL UPDATE statement, or SQL DELETE statement.
When combining these conditions, it is important to use brackets so that the database knows what order to evaluate each condition.
Example #1
The first example that we'll take a look at an example that combines the SQL "AND" and SQL "OR" conditions.
SELECT *
FROM suppliers
WHERE (city = 'New York' and name = 'IBM')
or (city = 'Newark');
This SQL SELECT statement would return all suppliers that reside in New York whose name is IBM and all suppliers that reside in Newark. The brackets determine what order the AND and OR conditions are evaluated in.
Example #2
The next example takes a look at a more complex statement.
For example:
SELECT supplier_id
FROM suppliers
WHERE (name = 'IBM')
or (name = 'Hewlett Packard' and city = 'Atlantic City')
or (name = 'Gateway' and status = 'Active' and city = 'Burma');
This SQL SELECT statement would return all supplier_id values where the supplier's name is IBM or the name is Hewlett Packard and the city is Atlantic City or the name is Gateway, the status is Active, and the city is Burma.
本文介绍了如何在SQL语句中结合使用AND和OR条件,通过示例解释了它们在SELECT、INSERT、UPDATE和DELETE语句中的应用。强调了使用括号来明确条件评估顺序的重要性,展示了如何构造复杂的查询表达式来获取所需的数据。
3591

被折叠的 条评论
为什么被折叠?



