0

My entity relationship diagram for a football team

My teacher tested this structure by testing it within access and creating a form which queried the database. It came back as erroneous, i don't mind if it can't be fixed but i need to know what it wrong with it. Thanks

tung
  • 719
  • 2
  • 14
  • 30

1 Answers1

1

I didn't test it but I think you should be able to create a database from your model.

However, there are some logical errors I detected:

  • the cardinality between team and position seems wrong as you modeled it a team only has one position and a position can belong to several teams
  • also, your tables position and manager contain no information in your current model and are therefore unnecessary

Heres how I would probably model it set the attributes and cardinalities according to your requirements:

model

tung
  • 719
  • 2
  • 14
  • 30