Posts: 427
Name: Stuart
Location: Glasgow, Scotland
|
The way we used to do it in uni was to write out the spec as a paragraph. Then highlight noun phrases (which will, generally, become the entities), verb phrases (which will generally be the relationships between them). And decide the normality (not sure if that is the correct term :S) between them i.e. many to many, 1 to many, many to 1.
e.g.
"The database should keep track of players who are members of each team and the matches that they play in."
Entities: Players, Teams, Matches
Relationships:
Players - member of - Team (M:1)
Players - play in - matches (M:M)
|