Hello all, just joined the forums as it looks like an interesting place and ive picked up a lot of tidbits from other users' posts...
Anyway im working on a project, learning and implementing ER (entity relationship) models. i must develop a drawn design (diagram) to satisfy the following conditions
- Every airplane has a registration number, which is unique, and each airplane is
of a specific model.
- The airport accomodates several airplane models. Each model is identified by a
model number (e.g., DC-10), and has a capacity and weight.
- A number of technicians work at the airport. Each technician is identified by
his/her SSN. Also you need to store the name, address, phone number and ssalary
of each technician.
- Each technician is an expert on one or more plane models, and his or her expertise
may overlap with that of other technicians. The expertise of each technician
needs to be stored.
- The airport has a number of tests that are used periodically to ensure that air-
planes are still airworthy. Each test has a FAA (Federal Aviation Administration)
test number, and this is unique. Each test also has a name, and a maximum
possible score.
- The FAA requires the airport to keep track of the last time an airplane was
administered a particular test. For each such testing, you need to store the date
of the test, the total number of man-hours spent on the test, and the score the
airplane received.
ive tried out many different approaches and i can't get it all to make sense in my head, heres what i have so far
(rectanges=entity types, ovals=attributes, diamonds=relationships)