postgreSQL- (2) 유용한 명령어

이명환·2020년 11월 17일
0

BackEnd

목록 보기
14/14
post-thumbnail

- Postgre SQL shell 진입시

  # psql [스키마명]

- DB 목록 출력 (show databases)

  # SELECT datname FROM pg_database;

또는

  # \list

- 테이블 목록 출력 (show tables)

  # SELECT table_name FROM information_schema.tables WHERE table_schema = '스키마명';

또는

  # \dt

- PSQL shell 종료

  # \q

- SQL문 파일을 실행

  $ psql -U [사용자명] [DB명] < [SQL파일명

- 특정 Table의 상세 정보를 조회

\d  [table name]


참조:

https://browndwarf.tistory.com/51
https://blog.uniqbuild.co.kr/?p=516

profile
Si vales bene, valeo

0개의 댓글