Step 1.  Database 확인 하기


SELECT datname FROM pg_database;


Step 2.  Table name 확인 하기


SELECT table_name FROM information_schema.tables WHERE table_schema = 'schema name';


Step 3.  Column name 확인 하기


SELECT column_name FROM information_schema.columns WHERE table_name = 'table name';


Query 로 정보 확인이 가능 합니다.


+ Recent posts