Question 61: Let's say we want to implement the following schema:
Enity: Staff Member (id , name)
Enity: Permanent (specialises Staff Member) (next_appraisal_date )
Enity: Temporary (specialises Staff Member) (contract_end_date)
A Staff Member is either a Permanent employee or a Temporary contractor. How do you define disjoint in parent child relationship?
- An entity can only participate in only one subtype role
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- Thanks for considering Python Certification Material
Correct Answer : 1
Exp : It means Temporary employee cannot be part of permanent employee.
You can access to full explanation to question and answer from this page.