https://www.canva.com/design/DAGGQI3jsQo/aZYZy0_PSEFsRfFUMNZx2g/edit
SQL - Structure Query Language
this generally talk to our database.
ex- SELECT * FROM person_db
After installation It generally give us 2 things
1 - pg admin (a frontend)
2 - SQL Shell (basically a command-line tool that lets you interact directly with your PostgreSQL database using SQL commands.)
Now to create a database we can simply write
CREATE DATABASE <DATABASE NAME>;
semicolon is must REMEMBER
and after that we can see this in our server list which can be shown by using Syntax “ \list ”.