Answers for "psql with username and password"

SQL
3

how to connect postgres user password using command line

sudo -u postgres psql postgres
Posted by: Guest on October-04-2020
2

psql create user

# https://www.postgresql.org/docs/8.0/sql-createuser.html
CREATE USER <username> WITH PASSWORD '<password>' VALID UNTIL '<date here>';
Posted by: Guest on April-08-2020
0

how to connect postgres user password using command line

\password postgres
Posted by: Guest on October-04-2020

Code answers related to "psql with username and password"

Code answers related to "SQL"

Browse Popular Code Answers by Language