1. 程式人生 > >sql 欄位新增 和增加欄位備註 刪除備註

sql 欄位新增 和增加欄位備註 刪除備註

新增備註

/*oracle*/ comment on column 表名.列名 is '備註';

/*mysql*/ ALTER TABLE 表名 MODIFY  欄位名 型別 COMMENT '備註';


刪除表字段
alter table <表名> drop column <欄位名>
 alter table payment_relation drop  column   records_associated_amount 

增加表字段
alter table WaitInput add    state  Integer  待獲積分狀態1生效,2失效

alter table WaitInput add    FailureTime  datetime //失效時間

  alter table payment_relation add  column  cancel_time datetime//取消時間
 alter table payment_relation add    records_associated_amount  decimal(11,2);// 收款記錄關聯金額展示