I'm trying to draw an ER diagram describing the following:
-"Department" employs "Employees"
-Some "Employees" are "Special" and have more attributes
-Some of the "Employees" ("Special" and non special) are "Managers"
-"Managers" manage "Departments"
So, to convey this I have:
Department ------(employs)------- Employee-----<--------Special
| |
|-----------(manages)----------
From my understanding, I cannot have 2 relationships between 2 entities. How do I deal with this situation then?
Department
can have multipleEmployee
as managers. – Clute