Graphical introduction to the difference between := and = in MySQL

Graphical introduction to the difference between := and = in MySQL

The difference between := and =

=

  • Only when setting and updating does it have the same effect as :=, that is, assignment; otherwise it has the effect of equality. In view of this, when using variables to implement line numbers, you must use :=

:=

  • It not only has the function of assigning values ​​when setting and updating, but also when selecting.

If you understand the difference between = and :=, then you will understand the following phenomenon.

@num:=@num+1, := is the function of assignment, so @num+1 is executed first, and then the value is assigned to @num, so the function of row number can be correctly realized.


@num=@num+1, here = means equal, @num is not equal to @num+1, so it always returns 0. If it is changed to @num=@num, it always returns 1. In the MySQL database, 1 represents true and 0 represents false.

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. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • A Brief Analysis of the Differences between “:=” and “=” in MySQL
  • Explain the usage of the <=> operator in MySQL
  • MYSQL where 1=1 judgment function description
  • mysql sql_mode="" function description
  • Summary of the use of special operators in MySql

<<:  How to use Docker-compose to build an ELK cluster

>>:  Avoiding Problems Caused by Closures in JavaScript

Recommend

A brief discussion on macrotasks and microtasks in js

Table of contents 1. About JavaScript 2. JavaScri...

Implementation example of JS native double-column shuttle selection box

Table of contents When to use Structural branches...

JavaScript two pictures to understand the prototype chain

Table of contents 1. Prototype Relationship 2. Pr...

How to monitor Linux server status

We deal with Linux servers every day, especially ...

Teach you to implement a simple promise step by step

Table of contents Step 1: Build the framework Ste...

Linux gzip command compression file implementation principle and code examples

gzip is a command often used in Linux systems to ...

The difference between Vue interpolation expression and v-text directive

Table of contents 1. Use plugin expressions 2. Us...

How to configure Java environment variables in Linux system

Configure Java environment variables Here, the en...

HTML Language Encyclopedia

123WORDPRESS.COM--HTML超文本标记语言速查手册<!-- --> !D...

How to enter directory/folder in Linux without using CD command

As we all know, without the cd command, we cannot...

Detailed explanation of fs module and Path module methods in Node.js

Overview: The filesystem module is a simple wrapp...

Vue realizes click flip effect

Use vue to simply implement a click flip effect f...

Detailed example of MySQL (5.6 and below) parsing JSON

MySQL (5.6 and below) parses json #json parsing f...