As shown below:
The result returned by the above statement is not what we want. analyze: The reason lies in the order of calculation. SQL prioritizes AND operators before OR operators. When SQL sees the above WHERE clause, the operators are incorrectly combined because AND has a higher precedence in the calculation order. The solution to this problem is to use parentheses to explicitly group corresponding operators. Please see the following SELECT statement SELECT prod_name,prod_price FROM products WHERE ( vend_id = 1002 OR vend_id = 1003 ) AND prod_price >= 10; Supplementary knowledge: Mysql | Combined where clause to filter data (AND, OR, IN, NOT) MySQL allows the use of multiple where clauses, and the combination of where clauses allows the use of two methods: AND and OR clauses. Operation symbols in the database: AND, OR, IN, NOT. AND :
OR :
IN : It is recommended not to use OR in clauses where IN can be used. IN has good performance and is easy to understand.
NOT: MySQL supports NOT only in the negation of IN, BETWEEN, and EXISTS clauses, which is different from most other databases that support various conditions.
Notice: In a clause that contains both AND and OR, MySQL prioritizes AND operations. It is generally recommended to use () to determine the processing order and eliminate ambiguity. for example:
The above article on solving the problems caused by the combination of AND and OR in MySQL is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: How to use Vue cache function
>>: A more elegant error handling method in JavaScript async await
1. One-click installation of Mysql script [root@u...
1. Function Mainly used to preserve component sta...
illustrate: Using mysqldump –all-databases will e...
Preface In some cases, we only know the intranet ...
Table of contents K8S Master Basic Architecture P...
Table of contents Saltstack deploys zabbix servic...
Preface When writing front-end pages, we often us...
Use the --all-database parameter when performing ...
How Nginx works Nginx consists of a core and modu...
1. Scroll Snap is a must-have skill for front-end...
This article example shares the specific code of ...
This article mainly introduces the wonderful use ...
Beautiful code is the foundation of a beautiful we...
There are two situations 1. Start time and end ti...
Use JS to implement a random roll call system for...