how to calculate total working hours in sql code example
Example: how to find total working hour in sql
Select AttendanceDate,StartTime,EndTime,DATEDIFF(Hour,StartTime,EndTime)As WorkingHours
From KingsUKAttendance
Select AttendanceDate,StartTime,EndTime,DATEDIFF(Hour,StartTime,EndTime)As WorkingHours
From KingsUKAttendance