“UserAdd Postgres” Kod odpowiedzi

PSQL Utwórz użytkownika

# https://www.postgresql.org/docs/8.0/sql-createuser.html
CREATE USER <username> WITH PASSWORD '<password>' VALID UNTIL '<date here>';
Weeke

UserAdd Postgres

sudo -u postgres psqlpostgres=# create database mydb;postgres=# create user myuser with encrypted password 'mypass';postgres=# grant all privileges on database mydb to myuser;
Angry Antelope

Odpowiedzi podobne do “UserAdd Postgres”

Pytania podobne do “UserAdd Postgres”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu