📚 [Postgresql]

Category: Postgresql | 📅 January 14, 2022

준비물

psql로 접근

$ sudo su postgres
$ psql
postgres=# 

다른 사용자로 접근하는 경우

$ sudo su postgres
$ psql -h localhost -U digndig -d imdb
$ Password for user digndig:

-h : 접속할 호스트 -U : 사용할 사용자 아이디 -d : DB 명

## 데이터베이스 목록 보기 ##

postgres=# \l

## 테이블 목록 보기 ##

imdb-> \dt

데이터베이스 이동

imdb-> \c db-name
🏷️ Tags
  • #show-table  
  • #table  
  • #postgresql