How to use worm replication in Mysql data table

How to use worm replication in Mysql data table

To put it simply, MySQL worm replication is to continuously insert the queried data into the specified data table. Normally, the MySQL worm is used to test table pressure when replicating.

Next, we will introduce the use of worm replication in MySQL data tables with a simple example.

First, we can query the information fields in the existing money table. The table information is as shown in the figure below.

The basic syntax of worm replication is:

insert into + data table name + field list/* + from data table name;

Example usage statement:

insert into money select null,name,money from money;

Then we use the command statement of the worm to copy the data in the money table. The specific operation is shown in the figure below.

Here we can see that the data grows in the order of 2, 4, 8, 16, 32..., which is the exponential increase we are familiar with. If you continue to operate, the data in the table can be expanded to a certain order of magnitude in a short period of time, thereby achieving the purpose of testing the table pressure.

The above is the method of using worm replication in MySQL data table. Thank you for your support to 123WORDPRESS.COM.

You may also be interested in:
  • Three ways to copy MySQL tables (summary)
  • Three implementation methods of Mysql copy table and grant analysis
  • Mysql method to copy a column of data in one table to a column in another table
  • Copy fields between different tables in MySQL
  • 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

<<:  Detailed tutorial on installing nvidia driver + CUDA + cuDNN in Ubuntu 16.04

>>:  vue+elementui implements the complete code of adding and modifying a shared bullet box

Recommend

Several common redirection connection example codes in html

Copy code The code is as follows: window.location...

Will Update in a Mysql transaction lock the table?

Two cases: 1. With index 2. Without index Prerequ...

Complete steps to set up automatic updates in CentOS 8

The best thing you can do for your data and compu...

Detailed discussion of memory and variable storage in JS

Table of contents Preface JS Magic Number Storing...

Basic usage of custom directives in Vue

Table of contents Preface text 1. Global Registra...

C# implements MySQL command line backup and recovery

There are many tools available for backing up MyS...

HTML Tutorial: title attribute and alt attribute

XHTML is the basis of CSS layout. jb51.net has al...

Linux checkup, understand your Linux status (network IO, disk, CPU, memory)

Table of contents 1. Core commands 2. Common comm...

Tips for adding favicon to a website: a small icon in front of the URL

The so-called favicon, which is the abbreviation o...

canvas.toDataURL image/png error handling method recommendation

Problem background: There is a requirement to tak...

Solve the problem of docker pull image error

describe: Install VM under Windows 10, run Docker...