I have a query that pulls an integer from a field for the start time of a session.
for example: The data is stored as 810, so I divide this by 60 and get 13.5, which is 1:30pm
How can I get the data to display as 1:30pm?
I've already done the first bit to get it to 13.5 (see below), but need to format further
SELECT tblAppointments.fldAppStart/60 AS StartTime
Thanks