How does one write update and/or delete and/or append queries using data in
time format when the field in the access table is date/time with medium time?
The format is *absolutely irrelevant* to what's stored.
A Date/Time value is stored as a Double Float count of days and fractions of a
day (times) since midnight, December 30, 1899. <checking>
5/16/2008 6:34:01 PM = 39584.7736226852
Your table field might contain just a date - e.g. 39584.000000000 is 5/16/08;
or it might just contain a time, e.g. 0.7736226852 is 6:34:01 PM, actually on
December 30, 1899; it might have both, but you can set the format to display
just the date, just the time, or both. You can even have the same table value
displayed with different formats, say in multiple textboxes on a form or
report.
What is the source of your time value? What is the nature of the data in your
table? Do you want to store the current time (which implies the current date
as well), or a generic time such as 5:00pm (date not specified, therefore
actually stored as 12/30/1899)?