1. 테이터베이스 테이블 리스트 정보 체크 select * from information_schema.tables WHERE TABLE_CATALOG = '[테이블 이름]'; 2. 테이블 컬럼 정보 체크 select * from information_schema.columns where table_name = '[테이블 이름]'; 3. 테이블 제약조건 체크 select * from INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE where table_name = '[테이블 이름]'