Postgres Tutorial
PostgreSQL Basic Commands
1. Log in as the PostgreSQL User
sudo -i -u postgres
2. Start the PostgreSQL Shell
psql
Database Operations
3. Create a Database
CREATE DATABASE db1;
4. List All Database
sundarpalanivel.hashnode.dev2 min read