In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-03-02 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)05/31 Report--
This article introduces the relevant knowledge of "mysql worm replication case analysis". Many people will encounter such a dilemma in the operation of actual cases, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!
Description
1. Migrate data from one table to another, or part of the specified data to another table.
2. Copy a large amount of data from one table to another.
3. Copy the data from a table to your own table to produce a large amount of data.
Example
Mysql > desc test +-+ | Field | Type | Null | Key | Default | Extra | +-+- -+ | id | int (11) | NO | PRI | NULL | auto_increment | | name | varchar (20) | YES | | NULL | | sex | varchar (1) | YES | | NULL | | | age | tinyint (3) unsigned | YES | | NULL | | +-+ mysql > desc user | +-+ | Field | Type | Null | Key | Default | Extra | +-+- -+ | id | int (11) | NO | PRI | NULL | auto_increment | | name | varchar (20) | YES | | NULL | | age | tinyint (3) unsigned | YES | | NULL | | | +-+-+ mysql > select * from test +-+ | id | name | sex | age | +-+ | 1 | name1 | male | 5 | 2 | name2 | female | 10 | 3 | name3 | male | 15 | 4 | name4 | male | 20 | +-+-+ -+-+ mysql > select * from user Empty set (0.00 sec) mysql > insert into user (name, age) select name, age from test;Query OK, 4 rows affected (0.00 sec) mysql > select * from user +-1 | name1 | 5 | 2 | name2 | 10 | 3 | name3 | 15 | 4 | name4 | 20 | +-+ "mysql worm replication usage instance analysis" ends here, thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.