--. information_schema.columns 테이블을 조회하면 컬럼 정보가 조회 됩니다.
--. PostgreSql 자체가 소문자로 저장되기 때문에 조건절의 테이블명은 반드시 소문자로 해야합니다.
select table_name
, column_name
, data_type
, character_maximum_length
, is_nullable
from information_schema.columns
where table_name = '테이블명'
order by ordinal_position
'Test Code > PostgreSql' 카테고리의 다른 글
[PostgreSql] for, foreach 문 사용하기 (0) | 2015.03.13 |
---|---|
[PostgreSql] 계산함수를 이용하여 array 계산하기 (0) | 2015.03.12 |
[PostgreSql] WITH 구분 사용 및 산술 Operator (0) | 2015.03.10 |
[PostgreSql] md5 로 저장하기 (0) | 2015.03.10 |
[PostgreSql] NULL 과 '' 은 구분된다. (0) | 2014.06.02 |