In order to change the password of a user in PostgreSQL we do the following:
ALTER ROLE username
WITH PASSWORD 'password';
Published by Muhammad Asfour
Estimated reading time: 1 min
In order to change the password of a user in PostgreSQL we do the following:
ALTER ROLE username
WITH PASSWORD 'password';