PostgreSQL의 테이블에 있는 칼럼 정보 읽어오기 작성자: 백흠경 7월 03, 2015 아래 쿼리문을 사용하여 테이블에 있는 칼럼 정보를 읽어올 수 있습니다. SELECT column_name FROM information_schema . columns WHERE table_schema = 'public' AND table_name = 'yourtablename' 자세한 내용 보기