I am casting DateTime field to Time by using CAST Syntax.
DateTime
CAST
select CAST([time] as time) as [CSTTime]
You can achieve it with CAST just simple use TIME(0) datatype in following:
TIME(0)
SELECT CAST('2015-03-19 01:05:06.289' AS TIME(0))
OUTPUT:
01:05:06