-
postgreSQL : 실행 명령어 몇가지DB/PostgreSQL 2023. 12. 8. 00:01
0. postgreSQL 터미널 접속
psql -p 포트번호 -U 계정이름 db이름
1. 등록된 유저 계정 조회
select * from pg_user;
2. db 생성
mysql과 같다
create database board;
3. db 목록 조회
list 할때
l
인듯\l
4. 접속중인 db 전환
change 할 때
c
인듯\c db이름
5. user 생성
create user 계정이름 with password '비밀번호';
6. user role 조회
\du
7. user 권한 role 주기
root 권한 주기
ALTER USER 유저이름 WITH SUPERUSER;
'DB > PostgreSQL' 카테고리의 다른 글
postgreSQL : Spring Boot 연동 (0) 2023.12.08 postgreSQL 설치 기록 (0) 2023.12.08