Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 191 Bytes

1建立資料庫.md

File metadata and controls

22 lines (14 loc) · 191 Bytes

資料庫

新增資料庫

CREATE DATABASE SQL_TUTORIAL;

查詢資料庫

使用psql語法
# \l

刪除資料庫

DROP DATABASE SQL_TUTORIAL;