A Brief Analysis of the Differences between “:=” and “=” in MySQL

A Brief Analysis of the Differences between “:=” and “=” in MySQL

=

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.

The following is a comparison of the effects of = and = in select

sql

set @num = 0;
SELECT @num := @num+1 AS rowno, nc as nickname from table_user;

result

sql

set @num = 0;
SELECT @num = @num+1 AS rowno, nc as nickname from table_user;

result

sql

set @num = 0;
SELECT @num = @num AS rowno, nc as nickname from table_user;

result


Reference: https://www.jb51.net/article/167218.htm

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:
  • 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
  • Graphical introduction to the difference between := and = in MySQL

<<:  Use the Linux seq command to generate a sequence of numbers (recommended)

>>:  js implements axios limit request queue

Recommend

Understanding the CSS transform-origin property

Preface I recently made a fireworks animation, wh...

WeChat applet implements a simple handwritten signature component

Table of contents background: need: Effect 1. Ide...

MySQL/MariaDB Root Password Reset Tutorial

Preface Forgotten passwords are a problem we ofte...

22 Vue optimization tips (project practical)

Table of contents Code Optimization Using key in ...

How to use JS to check if an element is within the viewport

Preface Share two methods to monitor whether an e...

About Generics of C++ TpeScript Series

Table of contents 1. Template 2. Generics 3. Gene...

MySQL data archiving tool mysql_archiver detailed explanation

Table of contents I. Overview 2. pt-archiver main...

JavaScript canvas realizes the effect of nine-square grid cutting

This article shares the specific code of canvas t...

Detailed explanation of the problem of CSS class names

The following CSS class names starting with a num...

JS implements user registration interface function

This article example shares the specific code of ...

Interactive experience trends that will become mainstream in 2015-2016

The most important interactive design article in ...

Docker configuration Alibaba Cloud image acceleration pull implementation

Today I used docker to pull the image, but the sp...

Detailed explanation of Vue monitoring attribute graphic example

Table of contents What is the listener property? ...

Several ways to implement image adaptive container with CSS (summary)

There is often a scenario where the image needs t...

How to fix the width of table in ie8 and chrome

When the above settings are used in IE8 and Chrome...