Is there a way to store an epoch time in seconds since 2000-01-01 as a datetime data type? I see you can insert this epoch time as a double and convert TO any format such as 'yyyy-DDD hh:mm:ss.SSSSSS' using datetime but I need to store the epoch time as a datetime. I have considered using convertTo when converting a datetime with specific format to an epoch time but it returns the value as an integer. The most important part of this is that I maintain microsecond precision. Any suggestions would be greatly appreciated!