DECLARE @Time VARCHAR(10);SET @Time = '1145'SELECT STUFF(@Time,3,0,':') AS [HH:MM]
Login to post response