共计 2289 个字符,预计需要花费 6 分钟才能阅读完成。
Oracle 修改字段名称
alter table xgj rename column old_name to new_name;
修改字段类型
alter table tablename modify (column datatype [default value][null/not null],….);
例子
假设表 xgj,有一个字段为 name,数据类型 char(20)。
create table xgj(id number(9) ,
name char(20)
)
1、字段为空,则不管改为什么字段类型,可以直接执行:
SQL> select * from xgj ;
ID NAME
---------- --------------------
SQL> alter table xgj modify(name varchar2(20));
Table altered
SQL>
2、字段有数据,若兼容,改为 varchar2(20) 可以直接执行:
-- 紧接着第一个情况操作,将 name 的类型改为创建时的 char(20)
SQL> alter table xgj modify(name char(20));
Table altered
-- 插入数据
SQL> insert into xgj(id,name) values (1,'xiaogongjiang');
1 row inserted
SQL> select * from xgj;
ID NAME
---------- --------------------
1 xiaogongjiang
SQL> alter table xgj modify(name varchar2(20));
Table altered
SQL> desc xgj;
Name Type Nullable Default Comments
---- ------------ -------- ------- --------
ID NUMBER(9) Y
NAME VARCHAR2(20) Y
SQL> alter table xgj modify(name varchar2(40));
Table altered
SQL> alter table xgj modify(name char(20));
Table altered
3、字段有数据,当修改后的类型和原类型不兼容时,执行时会弹出:“ORA-01439: 要更改数据类型, 则要修改的列必须为空”
栗子:
-- 建表
create table xgj (col1 number, col2 number) ;
-- 插入数据
insert into xgj(col1,col2) values (1,2);
-- 提交
commit ;
-- 修改 col1 由 number 改为 varchar2 类型(不兼容的类型)
alter table xgj modify (col1 varchar2(20))
解决办法:
- 修改原字段名 col1 为 col1 _tmp
alter table xgj rename column col1 to col1_tmp;
- 增加一个和原字段名同名的字段 col1
alter table xgj add col1 varchar2(20);
- 将原字段 col1_tmp 数据更新到增加的字段 col1
update xgj set col1=trim(col1_tmp);
- 更新完,删除原字段 col1_tmp
alter table xgj drop column col1_tmp;
总结:
1、当字段没有数据或者要修改的新类型和原类型兼容时,可以直接 modify 修改。
2、当字段有数据并用要修改的新类型和原类型不兼容时,要间接新建字段来转移。
添加字段
alter table tablename add (column datatype [default value][null/not null],….);
使用一个 SQL 语句同时添加多个字段:
alter table xgj
add (name varchar2(30) default‘无名氏’not null,
age integer default 22 not null,
salary number(9,2)
);
删除字段
alter table tablename drop (column);
创建带主键的表
create table student (studentid int primary key not null,
studentname varchar(8),
age int);
1、创建表的同时创建主键约束
(1)无命名
create table student (studentid int primary key not null,
studentname varchar(8),
age int);
(2)有命名
create table students (studentid int ,
studentname varchar(8),
age int,
constraint yy primary key(studentid));
2、删除表中已有的主键约束
(1)无命名
可用 SELECT * from user_cons_columns;
查找表中主键名称得 student 表中的主键名为 SYS_C002715
alter table student drop constraint SYS_C002715;
(2)有命名
alter table students drop constraint yy;
3、向表中添加主键约束
alter table student add constraint pk_student primary key(studentid);
更多 Oracle 相关信息见 Oracle 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=12
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2016-11/136850.htm
正文完
星哥玩云-微信公众号