MySQL select results to perform update example tutorial

MySQL select results to perform update example tutorial

1. Single table query -> update

UPDATE table_name
SET field1=new-value1, field2=new-value2
[WHERE Clause]

2. Multi-table joint query -> update

UPDATE a
INNER JOIN (SELECT yy FROM b) c ON a.id = c.id 
SET a.xx = c.yy
[WHERE Clause]
  • The above INNER JOIN can be replaced by LEFT JOIN, RIGHT JOIN and other joint queries.
  • The field after SET must be a field in table a. The field can be equal to a constant or a column. If it is not a field in table a, the message "The target table b of the UPDATE is not updatable" will be reported.
  • The WHERE clause must be placed after SET
  • The a table after UPDATE is not the result of a query, nor can it be a SELECT clause.

example:

tableex_copy1 table

tablein_copy1 table

Query SQL

SELECT * FROM
tableex_copy1 a LEFT JOIN
(SELECT * FROM tablein_copy1) b
ON a.BID = b.AID
WHERE b.ASEX = 'female'

update SQL

UPDATE
#SELECT * FROM
tableex_copy1 a LEFT JOIN
(SELECT * FROM tablein_copy1) b
ON a.BID = b.AID
SET a.CESHI = '6666'
WHERE b.ASEX = 'female'

Tableex_copy1 table after update

Summarize

This is the end of this article about MySQL executing update on select results. For more relevant content about MySQL executing update on select results, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • A brief discussion on MySQL select optimization solution
  • Solve the problem that MySQL read-write separation causes data not to be selected after insert
  • How MySQL Select Statement is Executed
  • Detailed example of using the distinct method in MySQL
  • Should I use distinct or group by to remove duplicates in MySQL?
  • The difference between distinct and group by in MySQL
  • Let's talk about the LIMIT statement in MySQL in detail
  • MySQL series tutorial on understanding the use of union (all) and limit and exists keywords
  • The impact of limit on query performance in MySQL
  • Use of select, distinct, and limit in MySQL

<<:  HTML table tag tutorial (17): table title vertical alignment attribute VALIGN

>>:  Front-end state management (Part 2)

Recommend

The latest virtual machine VMware 14 installation tutorial

First, I will give you the VMware 14 activation c...

Keep-alive multi-level routing cache problem in Vue

Table of contents 1. Problem Description 2. Cause...

How to design and create adaptive web pages

With the popularization of 3G, more and more peop...

Learn javascript iterator

Table of contents Introduction What does an itera...

Navicat connects to MySQL8.0.11 and an error 2059 occurs

mistake The following error occurs when connectin...

How to make a List in CocosCreator

CocosCreator version: 2.3.4 Cocos does not have a...

How to get form data in Vue

Table of contents need Get data and submit Templa...

Native js implements custom scroll bar component

This article example shares the specific code of ...

How to run .sh files in Linux system

There are two ways to run .sh files in Linux syst...

Summary of various postures of MySQL privilege escalation

Table of contents 1. Write Webshell into outfile ...

How to install MySQL 8.0 database on M1 chip (picture and text)

1. Download First of all, I would like to recomme...

How to install MySQL 5.7.17 and set the encoding to utf8 in Windows

download MySQL official download, select Windows ...