PostgreSQL-databases maken
Darryl Reeves
Industry Assistant Professor, New York University

postgres-rol is "superuser"postgrespostgres-gebruikerfinances-database


CREATE USERCREATE USER newuser;
newuser kan tabellen maken in de databaseCREATE USER newuser WITH PASSWORD 'secret';
ALTER USER newuser WITH PASSWORD 'new_password';
PostgreSQL-databases maken