PostgreSQL/Database/Create Database — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 10:14, 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=#