Postgres commands you should be using
login to postgresql user su - postgres To enter in postgresql:- su - postgres psql To create database create database <DatabaseName>; Create user with password create user <username> with encrypted password 'password'; To give permission to user ...
Jun 25, 20234 min read8


