创建Oracle数据库的字段约束:
非空约束
唯一约束
对字段的取值的约束
默认值
外键约束
create table tab_class(
class_id number primary key,
class_name varchar2(10) not null unique
);
create table tab_stu(
stu_id number,
--学生姓名,不能为空,不能重复
stu_name varchar2(20) not null unique,
--学生姓名只能是male或female
stu_gender varchar2(6) not null check(stu_gender='male' or stu_gender='female'),
--学生年龄只能在18到60之间
stu_age number check(stu_age >18 and stu_age 18 and che_age