Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> check constraints

check constraints

From: <samhou_at_my-deja.com>
Date: Fri, 26 Jan 2001 04:13:17 GMT
Message-ID: <94qtgo$rca$1@nnrp1.deja.com>

Hi all DBA:

     Would Oracle allow one table's check constraints to refer to another table's column name, also would subquery be allowed in check constraint in any version of oracle?

     Foreign key would be the best way for the example below, but I am interested to know if check constraint is possible in this case!

   For example :

         create table dept(
                   deptno   number,
                   name     varchar2(100)

);
create table emp ( empno number, name varchar2(100), deptno number constraint emp_pk_deptno check(exists(select * from emp where emp.deptno = dept.deptno))
);

   Thanks
   Sam Hou

Sent via Deja.com
http://www.deja.com/ Received on Thu Jan 25 2001 - 22:13:17 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US