Answers for "epoch to timestamp excel"

SQL
0

epoch to datetime

#--------------------------------SQL SERVER----------------------------------
#use this to convert forom bigint unix to datetime
#replace 1500123123 with your number
select  DATEADD(second,1500123123, CAST('1970-01-01 00:00:00' AS datetime))

#it's way better to put this in a function and call the function
Posted by: Guest on December-02-2021
0

epoch to unix timestamp conversion excel

=TEXT((G2/1000 + ("1/1/1970"-"1/1/1900"+1)*86400) / 86400,"DD/MM/YYYY HH:MM:SS")
Posted by: Guest on November-07-2021

Code answers related to "epoch to timestamp excel"

Code answers related to "SQL"

Browse Popular Code Answers by Language