This article introduces the command statements for checking the capacity of database tables in MySQL, and provides complete query statements and examples for easy learning and use. 1. View the capacity of all databases select table_schema as 'database', sum(table_rows) as 'Number of records', sum(truncate(data_length/1024/1024, 2)) as 'Data capacity (MB)', sum(truncate(index_length/1024/1024, 2)) as 'Index capacity (MB)' from information_schema.tables group by table_schema order by sum(data_length) desc, sum(index_length) desc; 2. View the capacity of all database tables select table_schema as 'database', table_name as 'table name', table_rows as 'number of records', truncate(data_length/1024/1024, 2) as 'Data capacity (MB)', truncate(index_length/1024/1024, 2) as 'Index capacity (MB)' from information_schema.tables order by data_length desc, index_length desc; 3. Check the capacity of the specified database Example: Check the capacity of the mysql database select table_schema as 'database', sum(table_rows) as 'Number of records', sum(truncate(data_length/1024/1024, 2)) as 'Data capacity (MB)', sum(truncate(index_length/1024/1024, 2)) as 'Index capacity (MB)' from information_schema.tables where table_schema='mysql'; 4. Check the capacity of each table in the specified database Example: Check the capacity of each table in the MySQL database select table_schema as 'database', table_name as 'table name', table_rows as 'number of records', truncate(data_length/1024/1024, 2) as 'Data capacity (MB)', truncate(index_length/1024/1024, 2) as 'Index capacity (MB)' from information_schema.tables where table_schema='mysql' order by data_length desc, index_length desc; The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Native js to achieve puzzle effect
The differences among execute, executeUpdate, and...
Table of contents Preface 1. Basic usage of liste...
In HTML, colors are represented in two ways. One i...
This article describes the MySQL slow query opera...
MySQL tuning Explain tool detailed explanation an...
Table of contents 1. What is an index signature? ...
Preface: Sometimes in a route, the main part is t...
Table of contents What is ref How to use ref Plac...
Secondly, the ranking of keywords is also related ...
Busybox: A Swiss Army knife filled with small com...
introduce You Yuxi’s original words. vite is simi...
Table of contents Preface Initialize the project ...
Elastic stack, commonly known as ELK stack, is a ...
Preface This article will explain how Vue compone...
Preface To delete a table, the command that comes...