Database
Creating a database

Dropping Database

Commands
create database testdb;
drop database if exists testdb;
Connect to DB
-- using psql
\c test
See list of tables
-- using psql
\d #to see tables
\d <name of table> #to see details about table
Last updated
Was this helpful?