前端之家收集整理的这篇文章主要介绍了
Oracle 的constraint写法,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
- 前言
There are a couple of ways to add constraints to restrict the values in the database. This article is about how to define a foreign key constraint and a check constraint in two ways.
- Table T1
CREATE TABLE T1 ( PID INT PRIMARY KEY,score INT,ISMINORITY VARCHAR(1) );
- Table T2
we are going to define a fk constraint and a check constraint on T2
CREATE TABLE T2 ( PID INT CONSTRAINT FK_PID REFERENCES T1(PID),ISMINORITY VARCHAR(1) CHECK(ISMINORITY IN ('N','Y')) );
CREATE TABLE T2 ( PID INT,ISMINORITY VARCHAR(1),CONSTRAINT FK_PID FOREIGN KEY (PID) REFERENCES T1(PID),CONSTRAINT CHECK_ISMINORITY CHECK(ISMINORITY IN ('N','Y')) );
原文链接:https://www.f2er.com/oracle/210782.html