show table status 문을 사용하여 데이터베이스의 테이블 상태를 확인할 수 있습니다. 예를 들어, tutorial이라는 데이터베이스에서 이 명령문을 실행하면 다음과 같이 테이블의 상태를 얻을 수 있습니다. -
mysql> show table status \G
*************************** 1. row *************************** Name: student Engine: InnoDB Version: 10 Row_format: Compact Rows: 0 Avg_row_length: 0 Data_length: 16384 Max_data_length: 0 Index_length: 0 Data_free: 7340032 Auto_increment: NULL Create_time: 2017-10-24 09:34:29 Update_time: NULL Check_time: NULL Collation: latin1_swedish_ci Checksum: NULL Create_options: Comment: 1 row in set (0.00 sec)
데이터베이스에는 "student"라는 테이블이 하나만 있습니다.
위 내용은 특정 MySQL 데이터베이스에서 테이블의 상태를 확인하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!