AdSense

網頁

2019/9/20

Oracle 刪除資料表欄位 remove columns from tables

Oracle刪除資料表欄位的語法如下。

刪除一個資料表欄位。

ALTER TABLE <table_name> DROP COLUMN <column_name>;

例如

ALTER TABLE employee DROP COLUMN age;

刪除多個資料表欄位。

ALTER TABLE <table_name> DROP (<column_one>, <column_two>);

例如

ALTER TABLE employee DROP (age, address);

參考:

沒有留言:

AdSense