PostgreSQL/Database/Create Database

Материал из SQL эксперт
Перейти к: навигация, поиск

Creates a database with a name

   <source lang="sql">

postgres=# postgres=# -- Creates a database with a name postgres=# postgres=# CREATE DATABASE booktown; CREATE DATABASE postgres=# postgres=# drop database booktown; DROP DATABASE postgres=#

      </source>