In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
How to modify the mysql character set in batches? This problem may be often seen in our daily study or work. I hope you can gain a lot from this question. The following is the reference content that the editor brings to you, let's take a look at it!
The method of batch modification of the mysql table character set is as follows: first, query all the table names of the database; then concatenate the table names into the statements that modify the table character set; finally, copy these statements to execute.
The method of batch modifying the character set of mysql table:
Change the table encoding (character set):
ALTER TABLE TABLE_NAME DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci
If a database has a lot of tables to modify, it is a headache and time-consuming if there is no good way. There are many methods, and the following one is relatively simple and easy to operate.
1. A statement that queries all table names of a database:
SELECT TABLE_NAME from information_ schema.`TABLES` WHERE TABLE_SCHEMA = 'DATABASE_NAME'
2. Get all the table names. We can concatenate the table names into the above statement that modifies the table character set, and get the following statement:
SELECT CONCAT ('ALTER TABLE', TABLE_NAME,' DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;') from information_ schema.`TABLES` WHERE TABLE_SCHEMA = 'DATABASE_NAME'
What you get after execution is the statements that modify all the table character sets in the database, and then copy the statements for execution.
Let me take the demo database as an example:
Thank you for reading! After reading the above, do you have a general idea of how to modify the mysql character set in batches? I hope the content of the article will be helpful to all of you. If you want to know more about the relevant articles, you are welcome to follow the industry information channel.
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.