PostgreSQL DESCRIBE 테이블

Jmnote (토론 | 기여)님의 2020년 3월 11일 (수) 15:52 판 (새 문서: ==개요== ;PostgreSQL "DESCRIBE TABLE" {{소스헤더|psql}} <source lang='sql'> \d+ 테이블명 </source> {{소스헤더|SQL}} <source lang='sql'> SELECT column_name, data_type, c...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

PostgreSQL "DESCRIBE TABLE"
psql
\d+ 테이블명
SQL
SELECT column_name, data_type, character_maximum_length
FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_name = '테이블명';

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}