There is a translation for Excel built-in date format [h]:mm:ss in T-SQL or any SQL platform? 
example:
    General [h]:mm:ss   [mm]:ss     [ss]
   1.00000  24:00:00    1440:00         86400
   1.00000  24:00:00    1440:00         86400
SUM
   2.00000  48:00:00    2880:00         172800
For T-SQL I will select
Without century (yy) (1)    With century (yyyy) Standard    Input/Output (3)
  14                             114                   -    hh:mi:ss:mmm(24h)
Or by default 108, I am discerning is do I have to recreate a function that can do the 
hh:mi:ss:mmm(+24h)?
Comments are very welcome;