Creates a database with a name : Create Database « Database « PostgreSQL






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=#
           
       








Related examples in the same category