Summary of the use of special operators in MySql

Summary of the use of special operators in MySql

Preface

There are 4 types of operators in MySQL, they are:

  • Arithmetic operators
  • Comparison Operators
  • Logical operators
  • Bitwise operators

This should be familiar to everyone, but this article summarizes the relevant content about special operators in MySQL. Let's take a look at the detailed introduction.

1. <=> safe comparison operator

In MySQL, any comparison with NULL will be NULL, which is often used to determine whether it is NULL.


Of course I can also use IS NULL


2. The role of := assignment

Both the := and = operators have the function of assigning values. In most scenarios, there is no difference between them, but := is more applicable to all scenarios.

= has the same function as := only when used for set and update, i.e. assignment. Otherwise, it functions as the relational operator equal to.

:= is not only used for setting and updating, but also for selecting. It is often used in combination with @, such as numbering.


3. @ User variables

@ is a local variable declaration. If there is no @, the field represents the column name and is used for user variable declaration.


4. @@ System variables

System variables are divided into global system variables and session system variables


Some system variables are only available at the global level, such as max_connnections. You do not need to explicitly declare global when reading, but you need to declare when setting. Otherwise, you will be prompted to set a global variable.

These are the most commonly used ones, and I will add more later. . .

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM.

You may also be interested in:
  • MySQL Where conditional statement introduction and operator summary
  • Examples of operators used in MySQL
  • MySQL Notes: Detailed Explanation of Operator Usage
  • Study on the default rules of mySQL UNION operator
  • Summary of commonly used operators and functions in MySQL
  • Learning MYSQL in comparison with MSSQL (V) - Operators
  • Teach you MySQL operators step by step

<<:  Detailed explanation of CentOS7 online installation of Docker 17.03.2 using Alibaba Cloud Docker Yum source

>>:  Detailed steps to install python3.7 on CentOS6.5

Recommend

Summary of 16 XHTML1.0 and HTML Compatibility Guidelines

1. Avoid declaring the page as XML type . The pag...

About the use of Vue v-on directive

Table of contents 1. Listening for events 2. Pass...

After reading the introduction of CSS box model, you will not be confused

The property names often heard in web design: con...

How to simplify Redux with Redux Toolkit

Table of contents Problems Redux Toolkit solves W...

Use label tag to select the radio button by clicking the text

The <label> tag defines a label (tag) for an...

Example of exporting and importing Docker containers

Table of contents Exporting Docker containers Imp...

In-depth analysis of MySQL execution plans

Preface In the previous interview process, when a...

MySQL 8.0.20 installation and configuration tutorial under Win10

MySQL 8.0.20 installation and configuration super...

Summary of frequently used commands for Linux file operations

0. New operation: mkdir abc #Create a new folder ...

Detailed explanation of MySQL injection without knowing the column name

Preface I feel like my mind is empty lately, as I...

Summary of several commonly used CentOS7 images based on Docker

Table of contents 1 Install Docker 2 Configuring ...

Analysis of MySQL latency issues and data flushing strategy process

Table of contents 1. MySQL replication process 2....