I've been reading the book "Database System Concepts Seventh Edition".
and the author says
A lower-level entity set (or subclass) also inherits participation in the relationship sets in which its higher-level entity (or superclass) participates.
does that also apply on a total participation constraint ?
for example, if the higher-level entity set has a total participation in a relationship "R"
then it also enforces each entity of the lower-level entities sets to participate in the relationship "R" ?
here is another example, suppose we have an entity set "Staff" and it has arbitrary subclasses "Doctor" and "Teacher".
Let's also assume that we have a separate entity set called "Building".
and we have a relationship set called "works_at".
the Building entity set has partial participation in relationship set "works_at"
and Staff entity set has a total participation in relationship set "works_at"
if Staff has total participation, then "Doctor" and "Teacher" also have total participations in "works_at" relationship ?