https://www.postgresql.org/ Install Postgresql for windows scoop scoop install postgresql Path PGPATH = C:\Users\username\scoop\apps\postgresql\current PGDATA = %PGPATH%\bin PATH = %PATH%;%PGPATH%\bin; Start / Stop pg_ctl start pg_ctl stop pg_ctl --help PG Admin [Window+s] pgadmin user / database psql -U postgres psql (11.1) 도움말을 보려면 help를 입력하십시오. # 사용자 생성 postgres=# create user username with pa..