添加备注
/*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);// 收款记录关联金额展示
本文介绍如何在Oracle和MySQL中为表字段添加备注,演示了如何删除表字段、新增表字段等常见操作,并提供了具体的SQL语句示例。
777

被折叠的 条评论
为什么被折叠?



