Answers for "psql linux adding user"

SQL
7

how to create new user and database postgresql in ubuntu

CREATE DATABASE yourdbname;CREATE USER youruser WITH ENCRYPTED PASSWORD 'yourpass';GRANT ALL PRIVILEGES ON DATABASE yourdbname TO youruser;
Posted by: Guest on July-03-2020
0

create new user in postgres

CREATE USER visualscrapy WITH PASSWORD '123456';
# it will create the new user in postgres
Posted by: Guest on December-13-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language