风哥Oracle教程 2016-11-07
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) )
SQL> select * from xgj ; ID NAME ---------- -------------------- SQL> alter table xgj modify(name varchar2(20)); Table altered SQL>
--紧接着第一个情况操作,将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
栗子:
--建表 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))
解决办法:
alter table xgj rename column col1 to col1_tmp;
alter table xgj add col1 varchar2(20);
update xgj set col1=trim(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、向表中添加主键约束