Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT Cast(CASE WHEN Cast(Left(Time, 2) AS tinyint) > 12
THEN Cast(Left(Time, 2) AS tinyint) - 12
ELSE Cast(Left(Time, 2) AS tinyint) END
AS varchar(2)) + ':'
+ SubString(Time, 3, 2) + ':'
+ Right(Time, 2) + ' '
+ CASE WHEN Cast(Left(Time, 2) AS tinyint) > 11
THEN 'PM' ELSE 'AM' END
FROM MyTable