Home > Software engineering >  I need a conversion function, from integer to date-time
I need a conversion function, from integer to date-time

Time:11-25

Is there a conversion to go from an integer (ex: 54600) to date-time format? I am seeing the integers in a flowsheet in healthcare, used to record a time

CONVERT(varchar, DATEADD(ms, b22.meas_value * 1000, 0), 114) AS 'START TIME' : Is the code that worked in MS SQL, but SNOWFLAKE does not recognize the function.

CodePudding user response:

You can try to use enter image description here

  • Related