show table status 명령어
페이지 정보
본문
show table status에 대한 해석입니다.
> show table status from mydb like 'test'\G;
*************************** 1. row ***************************
Name: test
Engine: InnoDB
Version: 10
Row_format: Compact
Rows: 500
Avg_row_length: 10
Data_length: 5000
Max_data_length: 0
Index_length: 0
Data_free: 4194304
Auto_increment: NULL
Create_time: 2021-05-31 04:58:39
Update_time: NULL
Check_time: NULL
Collation: utf8_bin
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec)
-Name : 테이블 이름
-Engine : 해당 테이블의 엔진
-Row_format : 열저장 형태 (fixed,Dynamic,Compressed)
-Rows : 열의 수
-Avg_row_length : 열의 평균 길이
-Data_length : 데이타파일의 길이 = 위의 Rows * Avg_row_length 값과 근사치
-Max_data_length : 해당 테이블이 사용할 수 있는 최대 데이터 파일의 크기
-Index_length : 인덱스 파일의 길이
-Data_free : Max_data_length - Data_length 로 가용공간을 의미
-Auto_increment : 다음 자동증가 변수
-Create_time : 테이블이 생성된 시간
-Update_time : 데이타파일의 마지막 UPDATE 시간
-Check_time : 테이블의 마지막 체크시간
-Create_options : 테이블 생성시의 기타옵션
-Comment : 테이블 생성시의 명령어
> show table status from mydb like 'test'\G;
*************************** 1. row ***************************
Name: test
Engine: InnoDB
Version: 10
Row_format: Compact
Rows: 500
Avg_row_length: 10
Data_length: 5000
Max_data_length: 0
Index_length: 0
Data_free: 4194304
Auto_increment: NULL
Create_time: 2021-05-31 04:58:39
Update_time: NULL
Check_time: NULL
Collation: utf8_bin
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec)
-Name : 테이블 이름
-Engine : 해당 테이블의 엔진
-Row_format : 열저장 형태 (fixed,Dynamic,Compressed)
-Rows : 열의 수
-Avg_row_length : 열의 평균 길이
-Data_length : 데이타파일의 길이 = 위의 Rows * Avg_row_length 값과 근사치
-Max_data_length : 해당 테이블이 사용할 수 있는 최대 데이터 파일의 크기
-Index_length : 인덱스 파일의 길이
-Data_free : Max_data_length - Data_length 로 가용공간을 의미
-Auto_increment : 다음 자동증가 변수
-Create_time : 테이블이 생성된 시간
-Update_time : 데이타파일의 마지막 UPDATE 시간
-Check_time : 테이블의 마지막 체크시간
-Create_options : 테이블 생성시의 기타옵션
-Comment : 테이블 생성시의 명령어
- 이전글SQL 기본 명령어 21.09.03
- 다음글MariaDB 파라미터 9 21.08.18
댓글목록
등록된 댓글이 없습니다.