A family of Microsoft relational database management systems designed for ease of use.
One thing I'd add to the discussion is that Access doesn't really have a native "duration" data type. Date/Time values represent a point in time, not an elapsed interval, which is why something like 00:35:10 ends up displaying as 12:35:10 AM when treated as a clock value. Because of that, another common approach is to store the duration as a Number field containing total seconds. That makes calculations like SUM, AVG, and comparisons very straightforward, and then you simply format it for display (hh:nn:ss) in a query, form, or report.
Another good design pattern is to store StartTime and EndTime and calculate the elapsed time from those when needed. That way you keep the original timestamps and can recompute the duration later if necessary.
Also worth noting: if you store durations as Date/Time values and format them as hh:nn:ss, anything over 24 hours will wrap around, which can lead to confusing results. Storing the raw value (seconds or minutes) avoids that limitation.
LLAP
RR