Is it possible to add a logic Constraint to a Foreign Key? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T10:26:57Zhttp://stackoverflow.com/feeds/question/1036217http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1036217/is-it-possible-to-add-a-logic-constraint-to-a-foreign-key2Is it possible to add a logic Constraint to a Foreign Key?Pure.Krome2009-06-24T03:05:09Z2009-06-25T05:08:54Z
<p>Hi folks,</p>
<p>I've got two tables and I've added a foreign key constraint. Kewl - works great. Now, is it possible to further constrain that relationship against some data in the parent table?</p>
<p>Basically, I have animals in the parent table, and for the child table wishto only contain data where the parent data are .... um .. mammals.</p>
<p>eg.</p>
<pre><code>Animals
^^^^^^^
AnimalId INT PK NOT NULL IDENTITY
AnimalType TINYINT NOT NULL -- 1: Mammal, 2:Reptile, etc..
Name
Mammals
^^^^^^^
AnimalId INT PK FK NOT NULL
NumberOfMammaryGlads TINYINT NOT NULL
</code></pre>
<p>So, i wishto make sure that the AnimalId can only be of type Animals.AnimalType = 1</p>
<p>Is this possible??</p>
<p>I don't want to allow someone to try and insert some info against a reptile, in the child table...</p>
<p>Cheers :)</p>
<h3>Edit:</h3>
<p>I thought I had to use a <a href="http://msdn.microsoft.com/en-us/library/ms188258.aspx" rel="nofollow">Check Constraint</a> (confirmed below from my first two answers - cheers!), but I wasn't sure how to (eg. the sql syntax to refer to the Animals table).</p>
<h3>Update:</h3>
<p>Alex has a very good post (below) that benchmarks some of the suggestions.... a very good read!</p>
http://stackoverflow.com/questions/1036217/is-it-possible-to-add-a-logic-constraint-to-a-foreign-key/1036224#10362240Answer by Tetraneutron for Is it possible to add a logic Constraint to a Foreign Key?Tetraneutron2009-06-24T03:09:44Z2009-06-24T03:26:59Z<p>I think you want to use a Check constraint within the Mammals table.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms188258.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms188258.aspx</a></p>
http://stackoverflow.com/questions/1036217/is-it-possible-to-add-a-logic-constraint-to-a-foreign-key/1036225#10362252Answer by Jeff Meatball Yang for Is it possible to add a logic Constraint to a Foreign Key?Jeff Meatball Yang2009-06-24T03:09:52Z2009-06-24T03:09:52Z<p>You can create a CHECK CONSTRAINT on the column.</p>
<pre><code>ALTER TABLE Mammals
ADD CONSTRAINT CHK_AnimalType CHECK (dbo.fnGetAnimalType(animalId) = 1 );
</code></pre>
<p>Now you need a function fnGetAnimalType that will return the animalType of the given animalId. </p>
<p>Here is more <a href="http://msdn.microsoft.com/en-us/library/ms188258.aspx" rel="nofollow">info from MSDN</a>.</p>
http://stackoverflow.com/questions/1036217/is-it-possible-to-add-a-logic-constraint-to-a-foreign-key/1036257#10362574Answer by AlexKuznetsov for Is it possible to add a logic Constraint to a Foreign Key?AlexKuznetsov2009-06-24T03:27:40Z2009-06-24T03:27:40Z<p>Have a unique constraint on Animals(AnimalId, AnimalType)
Add AnimalType to Mammals, and use a check constraint to make sure it is always 1.
Have a FK refer to (AnimalId, AnimalType).</p>
http://stackoverflow.com/questions/1036217/is-it-possible-to-add-a-logic-constraint-to-a-foreign-key/1038685#10386853Answer by AlexKuznetsov for Is it possible to add a logic Constraint to a Foreign Key?AlexKuznetsov2009-06-24T14:21:45Z2009-06-25T05:08:20Z<p>I ran a small benchmark - in this case the approach with a UDF runs almost 100 times slower.</p>
<h3>The overhead of an FK in CPU time = 375 ms - 297 ms = 78 ms</h3>
<h3>The overhead of an UDF in CPU time = 7750 ms - 297 ms = 7453 ms</h3>
<p>Here's the Sql code...</p>
<p>-- set up an auxiliary table Numbers with 128K rows:</p>
<pre><code>CREATE TABLE dbo.Numbers(n INT NOT NULL PRIMARY KEY)
GO
DECLARE @i INT;
SET @i = 1;
INSERT INTO dbo.Numbers(n) SELECT 1;
WHILE @i<128000 BEGIN
INSERT INTO dbo.Numbers(n)
SELECT n + @i FROM dbo.Numbers;
SET @i = @i * 2;
END;
GO
</code></pre>
<p>-- the tables</p>
<pre><code>CREATE TABLE dbo.Animals
(AnimalId INT NOT NULL IDENTITY PRIMARY KEY,
AnimalType TINYINT NOT NULL, -- 1: Mammal, 2:Reptile, etc..
Name VARCHAR(30))
GO
ALTER TABLE dbo.Animals
ADD CONSTRAINT UNQ_Animals UNIQUE(AnimalId, AnimalType)
GO
CREATE FUNCTION dbo.GetAnimalType(@AnimalId INT)
RETURNS TINYINT
AS
BEGIN
DECLARE @ret TINYINT;
SELECT @ret = AnimalType FROM dbo.Animals
WHERE AnimalId = @AnimalId;
RETURN @ret;
END
GO
CREATE TABLE dbo.Mammals
(AnimalId INT NOT NULL PRIMARY KEY,
SomeOtherStuff VARCHAR(10),
CONSTRAINT Chk_AnimalType_Mammal CHECK(dbo.GetAnimalType(AnimalId)=1)
);
GO
</code></pre>
<p>--- populating with UDF:</p>
<pre><code>INSERT INTO dbo.Animals
(AnimalType, Name)
SELECT 1, 'some name' FROM dbo.Numbers;
GO
SET STATISTICS IO ON
SET STATISTICS TIME ON
GO
INSERT INTO dbo.Mammals
(AnimalId,SomeOtherStuff)
SELECT n, 'some info' FROM dbo.Numbers;
</code></pre>
<p>results are:</p>
<pre><code>SQL Server parse and compile time:
CPU time = 0 ms, elapsed time = 2 ms.
Table 'Mammals'. Scan count 0, logical reads 272135,
physical reads 0, read-ahead reads 0, lob logical reads 0,
lob physical reads 0, lob read-ahead reads 0.
Table 'Numbers'. Scan count 1, logical reads 441, physical reads 0,
read-ahead reads 0, lob logical reads 0, lob physical reads 0,
lob read-ahead reads 0.
SQL Server Execution Times:
CPU time = 7750 ms, elapsed time = 7830 ms.
(131072 row(s) affected)
</code></pre>
<p>--- populating with FK:</p>
<pre><code>CREATE TABLE dbo.Mammals2
(AnimalId INT NOT NULL PRIMARY KEY,
AnimalType TINYINT NOT NULL,
SomeOtherStuff VARCHAR(10),
CONSTRAINT Chk_Mammals2_AnimalType_Mammal CHECK(AnimalType=1),
CONSTRAINT FK_Mammals_Animals FOREIGN KEY(AnimalId, AnimalType)
REFERENCES dbo.Animals(AnimalId, AnimalType)
);
INSERT INTO dbo.Mammals2
(AnimalId,AnimalType,SomeOtherStuff)
SELECT n, 1, 'some info' FROM dbo.Numbers;
</code></pre>
<p>results are:</p>
<pre><code>SQL Server parse and compile time:
CPU time = 93 ms, elapsed time = 100 ms.
Table 'Animals'. Scan count 1, logical reads 132, physical reads 0,
read-ahead reads 0, lob logical reads 0, lob physical reads 0,
lob read-ahead reads 0.
Table 'Mammals2'. Scan count 0, logical reads 275381, physical reads 0,
read-ahead reads 0, lob logical reads 0, lob physical reads 0,
lob read-ahead reads 0.
Table 'Numbers'. Scan count 1, logical reads 441, physical reads 0,
read-ahead reads 0, lob logical reads 0, lob physical reads 0,
lob read-ahead reads 0.
SQL Server Execution Times:
CPU time = 375 ms, elapsed time = 383 ms.
</code></pre>
<p>-- populating without any integrity:</p>
<pre><code>CREATE TABLE dbo.Mammals3
(AnimalId INT NOT NULL PRIMARY KEY,
SomeOtherStuff VARCHAR(10)
);
INSERT INTO dbo.Mammals3
(AnimalId,SomeOtherStuff)
SELECT n, 'some info' FROM dbo.Numbers;
</code></pre>
<p>results are:<br />
SQL Server parse and compile time:
CPU time = 1 ms, elapsed time = 1 ms.</p>
<pre><code>SQL Server Execution Times:
CPU time = 0 ms, elapsed time = 66 ms.
Table 'Mammals3'. Scan count 0, logical reads 272135, physical reads 0,
read-ahead reads 0, lob logical reads 0, lob physical reads 0,
lob read-ahead reads 0.
Table 'Numbers'. Scan count 1, logical reads 441, physical reads 0,
read-ahead reads 0, lob logical reads 0, lob physical reads 0,
lob read-ahead reads 0.
SQL Server Execution Times:
CPU time = 297 ms, elapsed time = 303 ms.
(131072 row(s) affected)
</code></pre>
<p>The overhead of an FK in CPU time = 375 ms - 297 ms = 78 ms<br />
The overhead of an UDF in CPU time = 7750 ms - 297 ms = 7453 ms</p>
http://stackoverflow.com/questions/1036217/is-it-possible-to-add-a-logic-constraint-to-a-foreign-key/1042274#10422740Answer by Hans Malherbe for Is it possible to add a logic Constraint to a Foreign Key?Hans Malherbe2009-06-25T05:08:54Z2009-06-25T05:08:54Z<p>To give a strong guarantee, you'll need two check constraints going both ways. If you only constrain <code>Mammals</code> someone could update <code>Animals.AnimalType</code> and get the data in an inconsistent state.</p>