MySQL information_schema : 기본적으로 만들어져 있는 DB 모든 DB에 대한 정보가 담겨져 있다. DB - select database() : 현재 사용중인 DB명 출력 - show databases : DB 조회 select 문만 이용해야 하는 경우 information_schema의 schemata 테이블을 조회하여 확인할 수 있다. - information_schema.schemata : DB 조회 select schema_name from information_schema.schemata; schema_name : DB이름 Table - show tables : table 조회 select 문만 이용해야 하는 경우 information_schema의 tables 테이블을 조회하..