Oracle concept 学习 6---foreign key, primary, unique key, check

unique key: allow null ,but primary key do not allow.

You can only add a column with a NOT NULL constraint if the table does not contain any rows or if you specify a default value.

primary key creates a unique index and a not null constraint.
1.In some cases, as when you create a primary key with a deferrable constraint, the generated index is not unique.
2.If a usable index exists when a primary key constraint is created, then the constraint reuses this index and does not implicitly create a new one.


foreign key

Foreign keys may be defined as multiple columns. However, a composite foreign key must reference a composite primary or unique key with the same number of columns and the same data types.
The value of foreign keys can match either the referenced primary or unique key value, or be null. If any column of a composite foreign key is null, then the non-null portions of the key do not have to match any corresponding portion of a parent key.

例子:
Referenced or Parent Table: department .   column is  department.department_id-----Parent Key Primary key of referenced table
Dependent or Child Table:       Employee.       column is  employee.department_id  ----- it is called foreign key.


3. foreign key 基础上的删除和修改

delete cascades.  For example, the deletion of a row in departments causes rows for all employees in this department to be deleted.
delete set null.  For example, the deletion of a department row sets the department_id column value to null for employees in this department.


4. foreign key & indexs

As a rule, foreign keys should be indexed.

Prevents a full table lock on the child table. Instead, the database acquires a row lock on the index.
Removes the need for a full table scan of the child table. As an illustration, assume that a user removes the record for department 10 from the departments table. If employees.department_id is not indexed, then the database must scan employees to see if any employees exist in department 10.


ALTER TABLE employees ADD CONSTRAINT max_emp_sal CHECK (salary < 10001);

5. constraint status

1.disable/enable    可以约束未来将要添加或者修改的数据
2.validate/novalidate  可以约束已经存在的数据


6.deferrable

INITIALLY IMMEDIATE    在每个语句后开始检查
INITIALLY DEFERRED     commit 之后才开始检查,如果违反, rollback.
ALTER TABLE cust ADD CONSTRAINT cust_id_pk PRIMARY KEY(cust_id) DEFERRABLE INITIALLY DEFERRED;

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/28826508/viewspace-1813857/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/28826508/viewspace-1813857/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值