+ All Categories
Home > Education > Oracle constraints

Oracle constraints

Date post: 12-Jul-2015
Category:
Upload: jani
View: 124 times
Download: 4 times
Share this document with a friend
16
Transcript

no constraints Specifies…

1 Not null A column can’t have a NULL value.

2 unique A column can’t have a duplicate value.

3 Primary key A column can’t have a NULL as well as

duplicate value.

4 Foreign key Limited INSERT and UPDATE operation detail

table.

5 check A column must follow a specified condition.


Recommended