- 建立資料庫基本 SQL 語法:
CREATE DATABASE name [ [WITH] [OWNER [=] user_name] [TEMPLATE [=] template] [ENCODING [=] encoding] [LC_COLATE [=] lc_collate] [TABLESPACE [=] tablespace] [CONNECTION LIMIT [=] connlimit] ]
- 刪除資料庫基本 SQL 語法:
DROP DATABASE [ IF EXISTS ] 名稱
操作練習
- 登入 psql 操作介面:
#su - postgres $psql #postgres=
- 新增 student 資料庫:
postgres=# CREATE DATABASE student postgres-# TEMPLATE = postgres ; (請注意 "=" 與 '-' 的不同)
- 新增完之後,可查詢資料庫:
postgres=# \l
- 刪除 student 資料庫:
DROP DATABASE student;
- https://www.howtoforge.com/tutorial/virtual-hosting-with-vsftpd-and-mysql-on-ubuntu-15.10/