Summary of Mysql update multi-table joint update method

Summary of Mysql update multi-table joint update method

Next, I will create two tables and execute a series of SQL statements. By carefully observing the changes in the data in the tables after the SQL statements are executed, it is easy to understand the usage of multi-table joint update.

student table class table

1. Execute UPDATE student s , class c SET s.class_name='test00',c.stu_name='test00' WHERE s.class_id = c.id

student table class table

2. Execute UPDATE student s JOIN class c ON s.class_id = c.id SET s.class_name='test11',c.stu_name='test11'

student table class table

3. Execute UPDATE student s LEFT JOIN class c ON s.class_id = c.id SET s.class_name='test22',c.stu_name='test22'

student table class table

4. Execute UPDATE student s RIGHT JOIN class c ON s.class_id = c.id SET s.class_name='test33',c.stu_name='test33'

student table class table

5. Execute UPDATE student s JOIN class c ON s.class_id = c.id SET s.class_name=c.name , c.stu_name=s.name

student table class table

Additional knowledge points:

MySQL multi-table association update

In daily development, we usually write single-table update statements, and rarely write updates that associate multiple tables.

Unlike SQL Server, in MySQL, there are some minor differences in the methods used for multi-table join updates and multi-table join queries for select.

Let’s look at a specific example.

update orders
  left join users u
    on o.userId = u.id
set o.userName = u.name;

In the above example, the update keyword is followed by a result set of a multi-table association. MySQL directly regards this multi-table association result set as a single table, and then performs regular update operations based on this single table.

The slight difference from SQL Server is that the set clause of SQL Server follows the specific table to be updated, while the set statement of MySQL follows the result set to be updated (the specific table to be updated is set in the set statement).

Summarize

This concludes this article on the summary of MySQL update multi-table joint update methods. For more relevant MySQL update multi-table joint update content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySQL batch update and batch update of different values ​​of multiple records
  • Several ways to update batches in MySQL
  • Batch modification, clearing, copying and other update commands for MySQL data table field contents
  • MySQL implements batch update of data in different tables

<<:  Extract specific file paths in folders based on Linux commands

>>:  Solution to the problem of returning 0x1 when the Windows 2008 task plan fails to execute a bat script

Recommend

JavaScript to achieve drop-down menu effect

Use Javascript to implement a drop-down menu for ...

How to completely delete and uninstall MySQL in Windows 10

Preface This article introduces a tutorial on how...

The difference between MySQL user management and PostgreSQL user management

1. MySQL User Management [Example 1.1] Log in to ...

Comprehensive analysis of isolation levels in MySQL

When the database concurrently adds, deletes, and...

Tutorial on installing MySQL 5.6 on CentOS 6.5

1. Download the RPM package corresponding to Linu...

CentOS 7.x deployment of master and slave DNS servers

1. Preparation Example: Two machines: 192.168.219...

Detailed explanation of keywords and reserved words in MySQL 5.7

Preface The keywords of MySQL and Oracle are not ...

Implementation of Vue top tags browsing history

Table of contents nonsense Functions implemented ...

Ubuntu Server Installation Tutorial in Vmware

This article shares with you the Ubuntu server ve...

Docker Basics

Preface: Docker is an open source application con...

What is a MySQL tablespace?

The topic I want to share with you today is: &quo...

HTML left and right layout example code

CSS: Copy code The code is as follows: html,body{ ...

HTML tag marquee realizes various scrolling effects (without JS control)

The automatic scrolling effect of the page can be...

How to implement controllable dotted line with CSS

Preface Using css to generate dotted lines is a p...

Detailed explanation of where Docker saves log files

Table of contents Where are the logs stored? View...