欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Oracle表字段的增加、删除、修改和重命名

程序员文章站 2022-07-01 20:47:37
本文主要是关于Oracle数据库表中字段的增加、删除、修改和重命名的操作。 增加字段语法:alter table tablename add (column datatype [default value][null/not null],….); 说明:alter table 表名 add (字段名 ......

本文主要是关于oracle数据库表中字段的增加、删除、修改和重命名的操作。

 

增加字段语法:alter table tablename add (column datatype [default value][null/not null],….);

说明:alter table 表名 add (字段名 字段类型 默认值 是否为空);

   例:alter table sf_users add (headpic blob);

   例:alter table sf_users add (username varchar2(30) default '空' not null);

 

修改字段的语法:alter table tablename modify (column datatype [default value][null/not null],….); 

说明:alter table 表名 modify (字段名 字段类型 默认值 是否为空);

   例:alter table sf_invoiceapply modify (billcode number(4));

 

删除字段的语法:alter table tablename drop (column);

说明:alter table 表名 drop column 字段名;

   例:alter table sf_users drop column headpic;

 

字段的重命名:

说明:alter table 表名 rename  column  列名 to 新列名   (其中:column是关键字)

   例:alter table sf_invoiceapply rename column pic to newpic;

 

表的重命名:

说明:alter table 表名 rename to  新表名

   例:alter table sf_invoiceapply rename to  sf_new_invoiceapply;