**************************************************************sql
這個只是我的平時總結,若是有更好的歡迎告訴我,一塊兒學習一塊兒成長數據庫
**************************************************************學習
DB2數據庫寫sql腳本時須要在腳本以前加入";"
eg:
--------------------------------腳本開始----------------------------------
;
--刪除DB2數據庫表字段
alter table db2inst1.student drop column age;
--修改DB2數據庫表字段的長度
alter table db2inst1.student alter name set data type varchar(100);
--DB2數據庫student表新增字段
alter table db2inst1.student add column class varchar(30);
--------------------------------腳本結束--------------------------------------------table
db2inst1是db2數據庫的schema,須要修改哪一個schema的就在表名前面加上schemaclass