View the size of individual tables in a single MySQL database

Source: Internet
Author: User

The SQL command is:

SELECT Table_name,data_length+index_length,table_rows,concat (Round (data_length+index_length)/1024/1024,2), ' MB ' As data from TABLES WHERE table_schema= ' dbmysql ';

Or

Select table_name, concat (Truncate (data_length/1024/1024,2), ' MB ') as Data_size,concat (truncate (index_length/1024/ 1024,2), ' MB ') as index_size from information_schema.tables where table_schema = ' dbmysql ' GROUP BY table_name ORDER by DA Ta_length desc;

Description

Table_schema: Database name

TABLE_NAME: Table name

Engine: the storage engine used

Data_length: Data size

Index_length: Index size

Tables_rows: Number of records

View the size of individual tables in a single MySQL database

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.