首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

给表中增多一列或者修改列类型,大小脚本

2012-07-03 
给表中增加一列或者修改列类型,大小脚本修改表中的某列:alter table tablename modify 字段 VARCHAR2(128)

给表中增加一列或者修改列类型,大小脚本

修改表中的某列:
alter table tablename modify 字段 VARCHAR2(128);

增加一列:
alter table tablename add 字段 VARCHAR2(128);

-- Add comments to the columns
comment on column table.字段
  is '中文注释;                                                                 
                                                 
                                                          
                                                    







热点排行