[Database] postgreSQL

postgreSQL

Postgre의 기본 포트는 5432

### Table of Contents

Installation

via Brew

brew install postgresql

via Installer

Download it from EnterpriseDB Website.

Start Server

via Terminal

Start Server
pg_ctl -D /usr/local/var/postgres start

Access Server
psql postgres

Stop Server
pg_ctl -D /usr/local/var/postgres stop
서버를 시작하는 명령어와 같지만, 마지막 부분에 start 대신 stop을 타이핑한다.

via PSequel

PSequel 은 MacOS 유저용 GUI 툴.
Terminal 보다 GUI 를 선호한다면 PSequel 을 인스톨하여 사용하도록 하자.

Installation

Input Database Info
PSequel 을 실행하여, 하기 정보를 입력 후 사용

PSequel

↑ return to TOC

Commands

Change

Choose

Create

Describe

Drop

Dump

Explain

EXPLAIN 을 통하여 Optimizer 의 실행 계획을 살펴볼 수 있다.

Grant

Info

List

↑ return to TOC