Right, I have this structure (example only).
UserType2 (
uID, areaID, lname, fname)
CompletedReport (
completedID, uID, reportID, dateDone)
ReportCheck (
completedID,
reportChecker)
Where uID's are related and the reportChecker:
- is a TYPE of User.
- MUST appear in the CompletedReport table.
- is such that a reportChecker must have completed a report with the same reportID.
For example, Bob and Joe completed report R1 with Sam doing R2 (so they are in the Completed Report Table).
Bob can then check (be the reportChecker) of Joe's report but not Sam's as Sam's is a different reportID.
If you have understood that so far - how do you illustrate this in an entity relationship diagram? Is this normalised enough?
Hopefully someone can help.