添加列:
alter table KJGL_SXS add (
JJLXR VARCHAR2(20),
JJLXDH VARCHAR2(20)
);
添加備注:
comment on column KJGL_SXS.JJLXR is '緊急聯系人';
comment on column KJGL_SXS.JJLXDH is '緊急聯系電話';
添加默認值:
alter table KJGL_SXS modify JJLXR default '測試';
修改字段比例(精度):
--如果提示有數據,相應增加字段長度即可。
alter table table modify (kcxf NUMBER(6,1));