A family of Microsoft relational database management systems designed for ease of use.
Is this what you are attempting?
SELECT FirstName, LastName
FROM Employees INNER JOIN TimeLog
ON Employees.EmployeeID = TimeLog.EmployeeID
WHERE NOW() BETWEEN DATEADD("n",-15,WorkDate+TimeStart)
AND WorkDate+TimeEnd + IIF(TimeStart > TimeEnd,1,0);