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:
