SQL Practice - in terminal
postgresql SQL Practice
1️⃣ Install & start PostgreSQL (Ubuntu)
sudo apt install postgresql postgresql-contrib
sudo -u postgres psql
2️⃣ Create and connect to a database
CREATE DATABASE company_db;
\c company_db
📌 \c is a psql command used to con...
codewithshivani.com3 min read