Guest User

Untitled

a guest
Dec 11th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Person (person_id (PK), first_name, last_name, birthday);
  2.  
  3. Student (person_id(PK,FK to Person),...);
  4. Staff (person_id(PK,FK to Person),job_title);
  5. Association_member( person_id(PK,FK to Person), reg_date) ;
  6. Resource_hire_log(resource_id, person_id (FK to Person), ....) ;
  7.  
  8. Resource_hire_log(resource_id,
  9. student_id (FK to Student), staff_id (FK to Staff),
  10. association_member_id (FK to Association_member), .... )
Add Comment
Please, Sign In to add comment