DB/PostgreSQL

[PostgreSQL] 명령어 모음집

재윤 2025. 1. 5. 05:42
반응형
  • postgreSQL 서버 시작
brew services start postgresql
  • postgres 접속
psql -U postgres
  • 모든 데이터베이스 조회
postgres-# \l
  • 데이터베이스 접속
postgres=# \c Kkrap
  • 데이터베이스 table 목록 조회
Kkrap=# \dt
  • table Schema 조회
Kkrap=# \d {table_name}
반응형

'DB > PostgreSQL' 카테고리의 다른 글

[PostgreSQL] Mac에 설치하기  (0) 2025.01.05