인덱스를 보기 위한 구문은 다음과 같습니다 -
select *from information_schema.statistics where table_schema= yourDatabaseName;
여기서는 'web' 데이터베이스를 사용하고 있습니다. 인덱스를 표시/보기 위한 쿼리는 다음과 같습니다. -
select *from information_schema.statistics where table_schema= 'web';
그러면 다음과 같은 출력이 생성됩니다. 인덱스 정보가 있는 "웹" 데이터베이스의 모든 테이블을 볼 수 있습니다. -