I want to check the amount of hours difference there is between current time (GETDATE()
) and StartTime
.
This is what I have so far:
SELECT
CheckedOut, GETDATE() AS CurrentDateTime, StartTime
FROM
TimeRecordModels
WHERE
CheckedOut = 0;
Also I want to make the bool CheckedOut
true if the difference is higher than 15 hours and then set column name EndTime
to GETDATE()
Use the DATEDIFF function.
To accomplish your update: