How do I track employee absense and tardiness?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to track employee absenses and tardiness so that I can use it to also
track occurances.
 
Create two tables, one for all of your employee data, and one to track
employee absences. Your primary key in the employee table would be something
like employee_id, and would be unique. This would also be the foreign key in
your employee absence table. Then, as employees are absent for whatever
reason, you would enter the absences and (and reasons) into the employee
absence table. You can then search and sort for absences by employee_id.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

SQL Statement help 3
ABSENCE RECORDS 1
Help with "if" Statement in Query 3
If then and more 1
Hiding second set of records 1
Sum and criteria 7
Form 1
Need to sum based on conditions 3

Back
Top