PostgreSQL/Database/Create Database
Версия от 13:45, 26 мая 2010; (обсуждение)
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=#