Tips for Mixing OR and AND in SQL Statements

Tips for Mixing OR and AND in SQL Statements

Today, there is such a requirement. If the logged-in person is a customer service representative, the order will be queried for "this customer service representative" and the orders that have not been matched with a customer service representative. At first, I thought of spelling "or assigned_id is null" directly in the SQL statement. After testing, I found that in this case, the other previous conditions are useless.

In this case, the first condition i.server_org_id = 4 is no longer applicable. From this we can see that AND has a higher priority than OR. The previous AND statement is executed first, and then the following OR statement is executed. Therefore, the data retrieved is not the data I want.

Later I thought about it again and found that I could first find out the corresponding assigned_id, as follows

The only data found in this way is the assigned_id 153

Final version:

Finally, all the correct data is read out. From this, we can see that () has a higher priority than AND. () is executed first, and then AND is executed.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Mysql multi-condition query statement with And keyword
  • Query process and optimization method of (JOIN/ORDER BY) statement in MySQL
  • MySQL briefly understands how "order by" works
  • .NET Core Dapper implementation method of operating MySQL database

<<:  A detailed introduction to the three installation methods of rpm, yum and source code under Linux

>>:  Summary of practical skills commonly used in Vue projects

Recommend

Use of Linux usermod command

1. Command Introduction The usermod (user modify)...

Nginx configures the same domain name to support both http and https access

Nginx is configured with the same domain name, wh...

Issues and precautions about setting maxPostSize for Tomcat

1. Why set maxPostSize? The tomcat container has ...

js to realize simple shopping cart function

This article example shares the specific code of ...

How to adjust the log level of nginx in Docker

Table of contents Intro Nginx Dockerfile New conf...

Pure JavaScript to implement the number guessing game

Develop a number guessing game that randomly sele...

Comprehensive summary of mysql functions

Table of contents 1. Commonly used string functio...