Oracle培训笔记四
2014-07-28
要点九:分区表
-
创建分区表
-
查询分区表中的数据
-
修改分区表
要点十:数据类型
-
char
-
varchar
-
varchar2
-
nvarchar2
-
blob
-
number(p, s)
要点十一:约束
-
主键约束(primary key)
-
作用:使数据保持唯一性,不能有重复值
-
语法: create table t1(id int primary key, age int);
alter table t1 modify id primary key;
-
非空约束(not null)
-
语法: create table t1(id int not null, age int);
alter table t1 modify id not null; // 给字段添加约束
-
检查约束(check)
-
语法:
create table t1(id int, age int check(age>22));
alter table t1 add constraint test_check check(age>22);//修改约束,test_check是约束名
alter table t1 drop constraint test_check; //删除约束
-
主外键约束(primary、foreign key)
-
用例: