Could someone help me with a rough database schema for a timesheet application where the i would be able to
Store hours per day for a time period ( 2 weeks ) fo
Sounds a bit like homework, but I'd probably start with something like this:
People - PersonID (PK) - PersonName - Other fields Projects - ProjectID (PK) - ProjectName - Other fields WorkTime - TimeID (PK) - ProjectID (FK) - PersonID (FK) - StartTime - EndTime