SHOW TABLE STATUS1 Table 상태(key, index 조회, 제약조건) Table 의 KEY, INDEX 조회 SHOW KEYS FROM tableName; -- key 조회 SHOW INDEX FROM tableName; -- index 조회 SHOW TABLE STATUS from dbName; -- db상에 존재하는 모든 테이블의 상태 참조 제약조건 조회 information_schema.referential_constraints 테이블에서 조회 SELECT * FROM information_schema.referential_constraints WHERE constraint_schema = 'DB 이름' and table_name='TABLE 이름'; 2022. 1. 18. 이전 1 다음