TIL/PostgreSQL
-
TIL.97 PostgreSQL 기본 명령어TIL/PostgreSQL 2021. 1. 13. 19:40
PostgreSQL의 기본명령어를 알아보자. - PostgreSQL shell 진입 psql db_name -U user_name - DB 목록 조회(show databases) \list or \l - 테이블 목록 조회(show tables) \dt - DB 생성 create database db_name Database 소유하는 user 지정 create database db_name with owner=user_name - DB 명 변경 alter database db_name rename to db_name2 소유하는 user 지정 변경 alter database db_name owner 변경user_name -현재 존재하는 SCHEMA 조회 \dn - Schema 생성 1.CREATE SCHEM..
-
TIL.96 PostgreSQL 튜토리얼TIL/PostgreSQL 2021. 1. 12. 18:14
기업협업 프로젝트 간 Nest JS 와 Typescript 그리고 PostgreSQL 을 사용하여 진행하게 되었다. 기존 MySQL이 아니지만 동일한 관계형 데이터베이스로 간단한 설치 방법 및 권한부여, DB 조회 등을 알아보자. 1. PostgreSQL 설치 brew install postgresql 2. PostgreSQL 서비스 시작 pg_ctl -D /usr/local/var/postgres start 또는 brew services start postgresql 3. 실행 확인 postgres -V 4. postgreSQL 접속 psql postgres 5. 자동으로 postgres 라는 유저가 기본으로 생성된다고 하지만 나는 아래와 같이 단 하나의 유저만 생성되었다. postgres=# \du ..