mysql 디비 테이블 컬럼 및 인덱스, 트리거 조회 쿼리
테이블 및 컬럼 조회 쿼리 select table_schema , table_name , column_name , column_type , ordinal_position from information_schema.columns where table_schema not in ('information_schema', 'mysql', 'performance_schema', 'sys') order by table_name, ordinal_position; 테이블 및 테이블에 속한 컬럼명, 타입을 조회하는 쿼리 테이블에 속한 인덱스 조회 쿼리 dataedo.com/kb/query/mysql/list-all-indexes-in-the-database List all indexes in MySQL database -..