MySQL conditional query and or usage and priority example analysis

MySQL conditional query and or usage and priority example analysis

This article uses examples to illustrate the usage and priority of MySQL conditional query and or. Share with you for your reference, the details are as follows:

Introduction to mysql and and or

AND and OR can be used to combine two or more conditions in a WHERE clause.

When using the OR keyword:

  • As long as one of the query conditions is met, such records will be queried.
  • If any of these query conditions are not met, such records will be excluded.

When using the and keyword:

  • All conditions must be met and such records will be queried.
  • If any of the conditions are not met, the record will be excluded.

Mysql and and or examples

The table data needed in this example are as follows:

title content category seo_name
PHP Array Analysis of PHP array usage 1 php
mysql distinct mysql distinct example 2 mysql
Java array How to use java array 3 java
php input How to get the value of php input 4 php

(1) AND condition query operator example:

Use AND to display all data with title "php array" and category 1:

SELECT * FROM ar WHERE title='php array' AND category='1'

result:

title content category seo_name
PHP Array Analysis of PHP array usage 1 php

(2) OR conditional operator example

Use OR to display all data with title "java array" or seo_name "php":

SELECT * FROM ar WHERE title='java array' OR seo_name='php'

result:

title content category seo_name
PHP Array Analysis of PHP array usage 1 php
Java array How to use java array 3 java
php input How to get the value of php input 4 php

(3) Combining AND and OR operators

We can also combine AND and OR (using parentheses to form complex expressions):

SELECT * FROM ar WHERE (title='java array' OR category='4')
AND seo_name='php'

result:

title content category seo_name
php input How to get the value of php input 4 php

and and or precedence

You can include any number of and and or operators in the where clause. Without any other symbols, such as parentheses, SQL will first execute the and condition and then the or statement, such as:

select * from table from id=1 or id=2 and price>=10;
/* http://www.manongjc.com/article/1439.html */

By default, this statement executes when id=2 and price is greater than or equal to 10, or when id=1.

If you add brackets:

select * from table from (id=1 or id=2) and price>=10;

This statement executes when id=1 or id=2, and price is greater than or equal to 10.

Readers who are interested in more MySQL-related content can check out the following topics on this site: "MySQL query skills", "MySQL transaction operation skills", "MySQL stored procedure skills", "MySQL database lock related skills summary" and "MySQL common function summary"

I hope this article will be helpful to everyone's MySQL database design.

You may also be interested in:
  • MySQL learning prerequisites for querying data
  • Essential conditional query statements for MySQL database
  • MySql multi-condition query statement with OR keyword
  • 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

<<:  Using JavaScript to implement carousel effects

>>:  Detailed explanation of fuser command usage in Linux

Recommend

Use of Linux ifconfig command

1. Command Introduction The ifconfig (configure a...

Steps to package and deploy the Vue project to the Apache server

In the development environment, the vue project i...

Several specific methods of Mysql space cleaning

Table of contents Preface 1. Check the file disk ...

Implementation code for installing vsftpd in Ubuntu 18.04

Install vsftpd $ sudo apt-get install vsftpd -y S...

Html Select option How to make the default selection

Adding the attribute selected = "selected&quo...

Example code for implementing verification code login in SMS API in Node

1. Node server setup + database connection The op...

How to modify the default network segment of Docker0 bridge in Docker

1. Background When the Docker service is started,...

Implementation steps of Mysql merge results and horizontal splicing fields

Preface Recently, I was working on a report funct...

How to migrate mysql storage location to a new disk

1. Prepare a new disk and format it with the same...

MySQL 8.0.18 uses clone plugin to rebuild MGR implementation

Assume that a node in the three-node MGR is abnor...

Analyzing the troublesome Aborted warning in MySQL through case studies

This article mainly introduces the relevant conte...

Is it necessary to create a separate index for the MySQL partition field column?

Preface Everyone knows that the partition field m...

3 ways to correctly modify the maximum number of connections in MySQL

We all know that after the MySQL database is inst...

How to optimize MySQL group by statement

In MySQL, create a new table with three fields, i...