choco install postgresql13 --params '/Password:159753 /Port:5432'
psql -Upostgres
ALTER USER postgres WITH PASSWORD 'new_password';
psql -d {db_name} -h {hostname} -p {port} -U {db_username}
→ psql -d pg_northwind -h 121.125.44.211 -p 5432 -U postgres
psql -U postgres
\l
\c {datbase_name}
\dt
\d+ {table_name_accept_wildcard}
PSQL cheatsheet: http://www.postgresqltutorial.com/postgresql-cheat-sheet/