Mysql 데이터베이스 크기 쿼리 방법: 1. 전체 데이터베이스 크기 쿼리, 코드는 [select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB')]; . 특정 데이터베이스를 쿼리합니다. 크기, 코드는 [informati]입니다.
관련 학습 권장 사항:mysql 데이터베이스
Mysql 데이터베이스 크기를 쿼리하는 방법:
1 전체 mysql 데이터베이스 크기를 쿼리합니다. ; 단위는 MB로 변환됩니다.
select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data from information_schema.TABLES
2. 특정 라이브러리의 크기를 쿼리합니다.
select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data from information_schema.TABLES where table_schema = 'testdb'
4. , 테이블 테스트부터 시작하여 모든 저장 크기
select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data from information_schema.TABLES where table_schema = 'testdb' and table_name = 'test_a';
위 내용은 mysql 쿼리 데이터베이스 크기의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!