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:
|
<<: Key knowledge summary of Vue development guide
>>: Detailed steps for porting busybox to build a minimal root file system
Performance For example: HTML: <div class=&quo...
Table of contents 1. Installation 2. Import into ...
Table of contents 1. Affairs: Four major characte...
In CentOS7, when we install MySQL, MariaDB will b...
Use profile to analyze slow SQL The main purpose ...
Download the latest version of MySQL for Ubuntu L...
Table of contents 2. Stack analysis using pt-pmap...
Generally, learning Java and deploying projects a...
Table of contents Character Set Comparison Rules ...
The computer system has been reinstalled, and the...
Table of contents 1. Baidu Map API Access 2. Usin...
Before we use JSX to build a component system, le...
Preface Anyone who has learned JavaScript must be...
What is a selector? The role of the selector is t...
In MySQL database operations, we always hope to a...