【Database】PostgreSQL資料庫 操作指令筆記

PostgreSQL資料庫 操作指令筆記

資料表增加欄位

ALTER TABLE "{資料表名稱}" ADD COLUMN "{欄位名稱}" {資料型別} (NOT NULL);

資料庫改變欄位NOT NULL 屬性

-- SET NOT NULL 設定為NOT NULL
-- DROP NOT NULL 取消NOT NULL 屬性
ALTER TABLE "{資料表名稱}" ALTER COLUMN "{欄位名稱}" SET/DROP NOT NULL;

 

持續增加中…….

 

參考資料:
http://tw.gitbook.net/postgresql/2013080675.html
https://www.postgresql.org/docs/current/sql-altertable.html
https://www.postgresqltutorial.com/postgresql-add-column/