Mysql method to copy a column of data in one table to a column in another table

Mysql method to copy a column of data in one table to a column in another table

mysql copy one table column to another table

Sometimes, we need to copy a whole column of data from a field to another new field. This is very simple. The SQL can be written like this:

UPDATE tb_1 SET content_target = content_source;

The general way of writing is as follows:

Update {your_table} set {source_field} = {object_field} WHERE cause

It is better to have tools such as Navicat, which can directly select a column of data and copy and paste it into the column you need. If it is the same table, there is no problem. If it is a new table, please keep the number of rows consistent. If the number of rows is inconsistent, you can create a new table and copy the columns into it, so that the number of ids will remain consistent.

Sometimes these MySQL interface tools will report errors, in which case it is better to use the command line. For example, to copy the data of a table field to another table field, you can write:

UPDATE tb_1 INNER JOIN tb_2 ON tb_1.tid = tb_2.tid
SET tb_1.tcontent = tb_2.tcontent

The following is a practical example, which writes the link of the static page generated by PHPCMS into the url field in the phpcms_content table:

First, piece together the required URL field column.

SELECT CONCAT(FROM_UNIXTIME(inputtime,'%Y/%m%d'), '/', contentid, '.html') AS dt FROM phpcms_content ORDER BY contentid DESC

Then in the query editor (navicat), copy the entire paragraph to the url column in the phpcms_content table.

Example of copying fields between different tables:

Requirement: Copy the name field of the student table to the name field of the student_rec table

student table

student_rec table

SQL implementation:

UPDATE student_rec INNER JOIN student ON student.id = student_rec.student_id 
SET student_rec.`name` = student.`name`

result:

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. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Three ways to copy MySQL tables (summary)
  • Three implementation methods of Mysql copy table and grant analysis
  • Copy fields between different tables in MySQL
  • How to use worm replication in Mysql data table
  • MySQL replication table details and example code
  • How to copy MySQL query results to a new table (update, insert)
  • mysql copy table structure and data example code
  • Tutorial on copying data from a table to a new table in MySQL
  • Tutorial on table replication and large data table backup in MySQL
  • Mysql method of copying table structure and table data
  • How to copy MySQL table

<<:  The correspondence between Tomcat and JDK versions and the features of each Tomcat version

>>:  Vue3 implements Message component example

Recommend

Reasons why MySQL 8.0 statistics are inaccurate

Preface Whether it is Oracle or MySQL, the new fe...

Zabbix configures DingTalk's alarm function with pictures

Implementation ideas: First of all, the alarm inf...

Detailed usage of js array forEach instance

1. forEach() is similar to map(). It also applies...

Details of the order in which MySQL reads my.cnf

Table of contents The order in which MySQL reads ...

Implementation of breakpoint resume in Node.js

Preface Normal business needs: upload pictures, E...

MySQL 5.7.17 and workbench installation and configuration graphic tutorial

This article shares the installation and configur...

Details of 7 kinds of component communication in Vue3

Table of contents 1. Vue3 component communication...

Getting Started: A brief introduction to HTML's basic tags and attributes

HTML is made up of tags and attributes, which are...

A brief discussion on the efficiency of MySQL subquery union and in

Recent product testing found a problem that when ...

Tomcat source code analysis of Web requests and processing

Table of contents Preface 1. EndPoint 2. Connecti...

How to install and configure GitLab on Ubuntu 20.04

introduce GitLab CE or Community Edition is an op...