A Microsoft extension to the ANSI SQL language that includes procedural programming, local variables, and various support functions.
For integer => time you use DATEADD, so logically for time => integer you use DATEDIFF
DECLARE @dTime AS TIME = '13:52:00.000'
SELECT DATEDIFF(second, '00:00:00', @dTime)