I have got 2 entities Office & Employee and I want to design the schema of the database for WorkingHours. There are offices that that have default WorkingHours for their employees, but there are Employees that might have different WorkingHours.
What is the best way to model that? Do I Have WorkingHours in both Tables?
What you can do is create a schema similar to the one below. Of course, you need to add additional columns to hold additional data if you have any and also adjust the queries with datatypes specific to the RDBMS you're using.
Also, don't forget to implement constraints and primary keys on your unique columns, in each of your tables.
In the
Employee
table you add a column to specify if the Employee is working under Default Office working hours (UseOfficeDefaultWorkingHours
).In the
WorkingHours
table you add a column to specify if the row contains the default working hours for the office with the help of another Boolean column, in this caseOfficeDefaultWorkingHours
.You can query this schema to get the working hours for an employee with a query similar to the one below:
This query will work under a SQL Server RDBMS, but I am not sure if it will work on other RDBMS products and you might need to adjust accordingly.