I have to create an entity relationship diagram for an SQL database. This question relates to a previous question I posted: Normalisation - SQL - 3NF
I have done the following entity relationship diagram and was wondering if it is correct (such as the relationships between tables), as follows:
The above entity relationship diagram is based on the following data in 3NF:
TBLCrew(CrewID[PrimaryKey], CrewType, CreweTitle, Forename, Surname, gender, CAALicenceNum)
TBLFlight(FlightID[PrimaryKey], FlightNum, IATADep, IATAArr, Date, SchArr, comments)
TBLAircraft(AircraftId[PimaryKey], A/CType, A/C Rep, A/C Manuf)
TBLCrewFlight(CreweID[composite/compoundKey], FlightID[composite/compoundKey])
AircraftFlight(CraftId, FlightId) [Composite Keys]
And here is the original data in UNF:
Is the entity relationship diagram correct in terms of relationships within the 3NF?