show/hide this revision's text 3 deleted 391 characters in body

I think you want to use a Check constraint within the Mammals table.

http://msdn.microsoft.com/en-us/library/ms188258.aspx

If you run this against your table it will create the constraint, note it will be hardcoded to AnimalId 1 - so if the values in teh Animal table change - the Mammal table might not be logically correct anymore.

ALTER TABLE MammalADD CONSTRAINT CK_IsMammal CHECK (AnimalId = 1)

creation without using a function based on:

http://msdn.microsoft.com/en-us/library/ms179491.aspx

show/hide this revision's text 2 added 287 characters in body; added 104 characters in body

I think you want to use a Check constraint within the Mammals table.

http://msdn.microsoft.com/en-us/library/ms188258.aspx

If you run this against your table it will create the constraint, note it will be hardcoded to AnimalId 1 - so if the values in teh Animal table change - the Mammal table might not be logically correct anymore.

ALTER TABLE MammalADD CONSTRAINT CK_IsMammal CHECK (AnimalId = 1)

creation without using a function based on:

http://msdn.microsoft.com/en-us/library/ms179491.aspx

show/hide this revision's text 1

I think you want to use a Check constraint within the Mammals table.

http://msdn.microsoft.com/en-us/library/ms188258.aspx