Examples of using the or statement in MySQL

Examples of using the or statement in MySQL

1. The use of or syntax in MySQL, and the points to note when using or in MySQL syntax. The project encountered a pitfall, and there was an error in querying the reward data! ! !

$sql = 'SELECT 
        * 
      FROM 
        `vvt_spread_doubleegg_exchange_award` AS p
      WHERE
        p.`act_type` = 4 or p.`act_type` = 5
      AND
        p.`user_id` = ' .$user_id
      ;

The or syntax in sql is generally used for queries with multiple conditions. The above syntax query is equivalent to: the data sets obtained by two sql queries.

 $sql = 'SELECT * FROM `vvt_spread_doubleegg_exchange_award` AS p WHERE p.`act_type` = 4;
 $sql = 'SELECT * FROM `vvt_spread_doubleegg_exchange_award` AS p WHERE p.`act_type` = 5 AND p.`user_id` = ' .$user_id;

2. To query the data set where act_type = 4 and user_id = 11123 or p.`act_type` = 5 and user_id = 11123, you must add () to the conditions on both sides of the or.

$sql = 'SELECT 
        * 
      FROM 
        `vvt_spread_doubleegg_exchange_award` AS p
      WHERE
        (p.`act_type` = 4 or p.`act_type` = 5)
      AND
        p.`user_id` = ' .$user_id
      ;

Summarize

The above is all the content of this article about the usage examples of or statements in MySQL. I hope it will be helpful to you. Interested friends can continue to refer to this site: Introduction to MySQL statement comment method, Analysis of SQL and MySQL statement execution order, Examples of optimization techniques for slow subquery efficiency of MySQL in statement, etc. If you have any questions, you can leave a message at any time and the editor will reply to you in time. Thank you friends for your support of 123WORDPRESS.COM!

You may also be interested in:
  • How to handle the failure of inserting rare characters in MySQL (Incorrect string value)
  • Solve the problem of Access denied for user ''root''@''%'' to database ''xxx'' after creating a database in MySQL
  • Solution to ERROR 1366 when entering Chinese in MySQL
  • Solution to MySQLSyntaxErrorException when connecting to MySQL using bitronix
  • Comparison of MySQL and Oracle SQL Language Differences

<<:  Installing Win10 system on VMware workstation 14 pro

>>:  Vue implements an example of pulling down and scrolling to load data

Recommend

CSS realizes div completely centered without setting height

Require The div under the body is vertically cent...

MySQL Practical Experience of Using Insert Statement

Table of contents 1. Several syntaxes of Insert 1...

Detailed explanation of the process of using docker to build minio and java sdk

Table of contents 1minio is simple 2 Docker build...

Simplify complex website navigation

<br />Navigation design is one of the main t...

Summary of commonly used CSS encapsulation methods

1. pc-reset PC style initialization /* normalize....

How to delete table data in MySQL

There are two ways to delete data in MySQL, one i...

CSS style solves the problem of displaying ellipsis when the text is too long

1. CSS style solves the problem of displaying ell...

MySQL Index Optimization Explained

In daily work, we sometimes run slow queries to r...

How to start a Vue.js project

Table of contents 1. Node.js and Vue 2. Run the f...

How to solve the problem of margin overlap

1. First, you need to know what will trigger the v...

CSS to achieve glowing text and a little bit of JS special effects

Implementation ideas: Use text-shadow in CSS to a...

Installation, configuration and use of process daemon supervisor in Linux

Supervisor is a very good daemon management tool....

A time-consuming troubleshooting process record of a docker error

Table of contents origin Environmental Informatio...

Graphical tutorial on installing JDK1.8 under CentOS7.4

Linux installation JDK1.8 steps 1. Check whether ...