Mysql updates certain fields of another table based on data from one table (sql statement)

Mysql updates certain fields of another table based on data from one table (sql statement)

The following code introduces MySQL to update some fields of another table based on the data of one table. The specific code is as follows:

DROP TABLE IF EXISTS T_U_TEMPLATE;
-- Template table CREATE TABLE T_U_TEMPLATE (
 ID INT NOT NULL AUTO_INCREMENT comment 'Template table ID',
 TEMPLATE_CODE VARCHAR(50) BINARY comment 'Template code',
 TEMPLATE_NAME VARCHAR(300) BINARY comment 'Template name',
 CREATE_TIME datetime DEFAULT NULL COMMENT 'Creation time',
 CREATE_BY varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'Creator' ,
 UPDATE_BY varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci COMMENT 'Updater' ,
 UPDATE_DATE datetime COMMENT 'Update time',
 constraint PK_U_TEMPLATE primary key (ID)
)DEFAULT CHARSET=utf8 comment 'Template table';
DROP TABLE IF EXISTS TEMPLATE_TEMP_CREATE;
-- Template temporary table CREATE TABLE TEMPLATE_TEMP_CREATE (
 ID INT NOT NULL AUTO_INCREMENT comment 'Template table ID',
 OBJECT_ID VARCHAR(50) BINARY comment 'Template code',
 OPERATER_NAME varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'Updater' ,
 CREATE_TIME datetime NOT NULL COMMENT 'Update time',
 constraint PK_U_TEMPLATE primary key (ID)
)DEFAULT CHARSET=utf8 comment 'Template temporary table';
-- Modify the creator's creation time to the T_U_TEMPLATE table UPDATE T_U_TEMPLATE a,TEMPLATE_TEMP_CREATE b SET a.CREATE_TIME=b.CREATE_TIME WHERE a.TEMPLATE_CODE = b.OBJECT_ID;
UPDATE T_U_TEMPLATE a,TEMPLATE_TEMP_CREATE b SET a.CREATE_BY=b.OPERATER_NAME WHERE a.TEMPLATE_CODE = b.OBJECT_ID;

Summarize

The above is what I introduced to you about Mysql updating certain fields of another table based on the data of one table. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • Getting Started with MySQL (IV) Inserting, Updating, and Deleting Data from a Table
  • MySQL data insertion optimization method concurrent_insert
  • MySQL data insertion efficiency comparison
  • Why is the disk space still occupied after deleting table data in MySQL?
  • Detailed explanation of the idea of ​​MySQL trigger detecting a statement in real time for backup and deletion
  • mysql data insert, update and delete details

<<:  Key knowledge summary of Vue development guide

>>:  Detailed steps for porting busybox to build a minimal root file system

Recommend

A brief discussion on CSS height collapse problem

Performance For example: HTML: <div class=&quo...

Steps for Vue3 to use mitt for component communication

Table of contents 1. Installation 2. Import into ...

Detailed explanation of transactions and indexes in MySQL database

Table of contents 1. Affairs: Four major characte...

Detailed steps to install MySQL on CentOS 7

In CentOS7, when we install MySQL, MariaDB will b...

A performance bug about MySQL partition tables

Table of contents 2. Stack analysis using pt-pmap...

Install and deploy java8 and mysql under centos7

Generally, learning Java and deploying projects a...

Summary of MySQL character sets

Table of contents Character Set Comparison Rules ...

Methods and steps to access Baidu Maps API with JavaScript

Table of contents 1. Baidu Map API Access 2. Usin...

How to use JSX to implement Carousel components (front-end componentization)

Before we use JSX to build a component system, le...

Differences between this keyword in NodeJS and browsers

Preface Anyone who has learned JavaScript must be...

Four categories of CSS selectors: basic, combination, attribute, pseudo-class

What is a selector? The role of the selector is t...

How to improve MySQL Limit query performance

In MySQL database operations, we always hope to a...