PostgreSQL/Database/Create Database
Creates a database with a name
postgres=#
postgres=# -- Creates a database with a name
postgres=#
postgres=# CREATE DATABASE booktown;
CREATE DATABASE
postgres=#
postgres=# drop database booktown;
DROP DATABASE
postgres=#