I have a .dat file that represents a Table in a database and has a particular column for timestamp
values. Now the values are stored in the following way: -
978302039
I'm required to copy all the elements into another table, but I'm not sure if the column containing these values should be of int
or timestamp
. As far as I know, we store timestamp
values in the following format: -
1000:09:12 00:00:00
But these values stored here don't look anything like that. Is there any internal representation of timestamp
values?