이 기사에서는 데이터베이스 테이블의 용량을 확인하기 위한 MySQL 명령문을 소개하고, 누구나 배우고 사용할 수 있는 완전한 쿼리문과 예제를 제공합니다.
select table_schema as '数据库',sum(table_rows) as '记录数',sum(truncate(data_length/1024/1024, 2)) as '数据容量(MB)',sum(truncate(index_length/1024/1024, 2)) as '索引容量(MB)'from information_schema.tablesgroup by table_schemaorder by sum(data_length) desc, sum(index_length) desc;
select table_schema as '数据库', table_name as '表名', table_rows as '记录数',truncate(data_length/1024/1024, 2) as '数据容量(MB)',truncate(index_length/1024/1024, 2) as '索引容量(MB)'from information_schema.tablesorder by data_length desc, index_length desc;
예: mysql 라이브러리의 용량 보기
select table_schema as '数据库',sum(table_rows) as '记录数',sum(truncate(data_length/1024/1024, 2)) as '数据容量(MB)',sum(truncate(index_length/1024/1024, 2)) as '索引容量(MB)'from information_schema.tableswhere table_schema='mysql';
예: mysql 라이브러리의 각 테이블 용량 확인
select table_schema as '数据库', table_name as '表名', table_rows as '记录数',truncate(data_length/1024/1024, 2) as '数据容量(MB)',truncate(index_length/1024/1024, 2) as '索引容量(MB)'from information_schema.tableswhere table_schema='mysql'order by data_length desc, index_length desc;
이 글에서는 MySQL을 통해 데이터베이스 테이블의 용량을 확인하는 방법을 설명합니다. . 더 많은 관련 내용을 보려면 PHP 중국어 웹사이트를 참고하세요.
관련 권장 사항:
PHP str_getcsv를 사용하여 문자열을 배열로 구문 분석하는 방법에 대한 설명
요청 데이터 용량을 줄이기 위해 서버 인터페이스를 호출하도록 클라이언트를 최적화하세요
mysql 순서 by rand () 효율성 최적화 방법
위 내용은 MySQL을 통해 데이터베이스 테이블 용량을 확인하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!