In this case, with the recording of the report for the planning application, you need the time that was saved as part of the date and time data type. I formed datetime as 0, which gives you this mon dd yyyy hh: miAM (or PM), and just made a substring of what returned the time only in AM / PM format.
An example is below.
DECLARE @S DATETIME = GETDATE() SELECT SUBSTRING(CONVERT(NVARCHAR(30), @S , 0) , 13 , 10) AS ApptTime , CONVERT(NVARCHAR(30), @S , 0) AS ApptDate
source share