I am working on a stored procedure that returns a column of type DateTimedatatype.
But I want to return only hh:mmwithout seconds. I use this, but it returns seconds.
CONVERT(VARCHAR(8), tbltime.Time, 108) AS [Time]
Any ideas for removing seconds?
source
share