create new user in postgres pgadmin 4 code example
Example 1: create new user in postgres
CREATE USER visualscrapy WITH PASSWORD '123456';
# it will create the new user in postgres
Example 2: create user and password postgres
dropuser username
CREATE USER visualscrapy WITH PASSWORD '123456';
# it will create the new user in postgres
dropuser username