MySql multi-condition query statement with OR keyword

MySql multi-condition query statement with OR keyword

The previous article introduced the MySql multi-condition query statement with the And keyword. The following article introduces the MySql multi-condition query statement with the OR keyword. Friends who are interested can learn together.

MySQL's multi-condition query with the OR keyword is different from the AND keyword. With the OR keyword, as long as the record meets any one of the conditions, it will be queried.

SELECT * | {field name 1, field name 2, ...}
FROM table name WHERE conditional expression 1 OR conditional expression 2 […… OR conditional expression n];

Query the names of students in the student table whose id field value is less than 15 or whose gender field value is nv

It can be seen that among the 5 records returned, 3 records have an id field value less than 15, or a gender field value of nv

Query the student table for records where the name field value starts with the character "h" or the grade field value is 100

It can be seen that the records that meet the conditions are queried

When OR and AND keywords are used together

The OR keyword and the AND keyword can be used together. Note that AND has a higher priority than OR.

Therefore, when the two are used together, the conditional expressions on both sides of AND should be calculated first, and then the conditional expressions on both sides of OR

Query the names of students in the student table whose gender field value is nv, or whose gender field value is na, and whose grade field value is 100

It can be seen

If the priority of AND is the same as or lower than that of OR, the AND operation will be executed last and the query result will return one record.

Here, three records are returned, indicating that the AND operation is executed first and the OR operation is executed later, that is, AND has a higher priority than OR.

The above is the MySql multi-condition query statement with OR keyword introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • MySQL learning prerequisites for querying data
  • Essential conditional query statements for MySQL database
  • MySQL conditional query and or usage and priority example analysis
  • Mysql multi-condition query statement with And keyword
  • How to use case when statement in MySQL to implement multi-condition query
  • A comprehensive summary of common operations of MySQL conditional query statements

<<:  Basic usage tutorial of IPTABLES firewall in LINUX

>>:  React hooks introductory tutorial

Recommend

Analysis of Linux Zabbix custom monitoring and alarm implementation process

Target Display one of the data in the iostat comm...

Implementation of CentOS8.0 network configuration

1. Differences in network configuration between C...

Vue implements zoom in, zoom out and drag function

This article example shares the specific code of ...

Solution to large line spacing (5 pixels more in IE)

Copy code The code is as follows: li {width:300px...

MySQL efficient query left join and group by (plus index)

mysql efficient query MySQL sacrifices group by t...

How to modify create-react-app's configuration without using eject

1. Why is eject not recommended? 1. What changes ...

Detailed explanation of the group by statement in MySQL database group query

1: Statement order of grouping function 1 SELECT ...

How to set up swap partition SWAP in Linux 7.7

The Swap partition of the Linux system, that is, ...

Special commands in MySql database query

First: Installation of MySQL Download the MySQL s...

HTML table tag tutorial (35): cross-column attribute COLSPAN

In a complex table structure, some cells span mul...

Analysis of the project process in idea packaging and uploading to cloud service

one. First of all, you have to package it in idea...

HTML form submission method case study

To summarize the form submission method: 1. Use t...