Hi guys,
I have an issue with selecting data by date. In my case i have to update records for a particular employee, particular date based on the scheduled date.
the base scenario is like that
I should update the clockin and clockout information on a paticular date of an employee.If clock in happen today,
but clockout happen tomorrow how can I display the data?
Tables
-------
Employee{EmployeeID,EmployeeName}
ClockIn{ClockInID,EmployeeID,ClockInDateTime}
ClockOut{ClockOutID,EmployeeID,ClockOutDateTime}
In this situation How can I fetch records by employeeId,date?