Answers for "postgres create root user"

SQL
1

postgres set user as superuser

ALTER USER myuser WITH SUPERUSER;
Posted by: Guest on December-23-2021
0

create postgres user windows

# in the terminal (not inside psql)
createuser -P --interactive ExampleUser

# Inside psql (using SQL)
CREATE USER john WITH PASSWORD 'mypass' CREATEDB;
Posted by: Guest on January-23-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language