I am working on a stored procedure which returns a column of DateTime
datatype.
But I want to return only hh:mm
with no seconds. I am using this but it returns seconds.
CONVERT(VARCHAR(8), tbltime.Time, 108) AS [Time]
Any ideas to remove the seconds?