Postgresql create user with password - SQL Server Guides
https://sqlserverguides.com/postgresql-create-user-with-password/
Sep 27, 2021 · In Postgresql, we can create a new user with a password and allow the user to log in. Use the below command to allow the user to log in. createuser dan -s -l -P Here -s represent superuser, -P for the password, and -l allows the new user to log in. Enter the psql prompt. psql View the newly created user with login, \du -- To list all the user
DA: 10 PA: 93 MOZ Rank: 23