기타/PostgreSQL
postgresql 접속 방법 및 간단한 쿼리
워니주니구니
2022. 9. 22. 18:07
728x90
SMALL
- client access
psql -h <postgresql-end-point> -U <user> -d <database> -W
- database list
SELECT datname FROM pg_database WHERE datistemplate = false;
- process list
select * from pg_stat_activity;
728x90
LIST