How to view the space occupied by data tables and the number of records in the MySQL database _ MySQL

Source: Internet
Author: User
Tags mysql manual
This article describes how to view the space occupied by data tables and the number of records in the MySQL database. if you want to know the space occupied by each table in the MySQL database and the number of rows recorded in the table, you can open the information_schema database query of MySQL. This article describes the query method. if you want to know the space occupied by each table in the MySQL database and the number of table records, you can open the information_schema database of MySQL. There is a TABLES table in this database. The main fields of this table are:

TABLE_SCHEMA: database name
TABLE_NAME: table name
ENGINE: The storage ENGINE used
TABLES_ROWS: number of records
DATA_LENGTH: data size
INDEX_LENGTH: index size

For other fields, see the MySQL Manual. These fields are the most useful.
The size of the space occupied by a table is equivalent to the data size + index size,

Example:

1. to view the sizes of all tables in the hx database, use:

The code is as follows:


SELECT TABLE_NAME, DATA_LENGTH + INDEX_LENGTH, TABLE_ROWS FROM information_schema.TABLES WHERE TABLE_SCHEMA = 'hx ';

+ ------------------- + -------------------------- + ------------ +
| TABLE_NAME | DATA_LENGTH + INDEX_LENGTH | TABLE_ROWS |
+ ------------------- + -------------------------- + ------------ +
| Enjoy_data | 6979584 | 70113 |
| Hx_record | 113410048 | 753279 |
| Itlearner_record | 21835546624 | 104917777 |
| Tmp_day_id | 17326 | 811 |
+ ------------------- + -------------------------- + ------------ +


2. to view the enjoy table size of the hx database, use:

The code is as follows:


SELECT DATA_LENGTH + INDEX_LENGTH, TABLE_ROWS FROM information_schema.TABLES WHERE TABLE_SCHEMA = 'hx 'AND TABLE_NAME = 'enjoy _ data ';


Return value:

The code is as follows:


+ -------------------------- + ------------ +
| DATA_LENGTH + INDEX_LENGTH | TABLE_ROWS |
+ -------------------------- + ------------ +
| 6979584/70113 |
+ -------------------------- + ------------ +

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.