psql -p 포트번호 -U 계정이름 db이름
select * from pg_user;
mysql과 같다
create database board;
list 할때 l 인듯
l
\l
change 할 때 c 인듯
c
\c db이름
create user 계정이름 with password '비밀번호';
\du
https://mozi.tistory.com/544
root 권한 주기
ALTER USER 유저이름 WITH SUPERUSER;