반응형
- 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 |
---|