0
I have a database in which tables have a Timestamp column (column name) which is int type, where I store the value in Unix Timestamp format. I’m trying to give a select on the most recent date. However I do not know if it is possible to do this filtering with the value in Unix Timestamp format, or if it is necessary to do the conversion to Datetime.
I’m trying this way :
SELECT MAX (TimeStamp)
It’s been working so far, but I’m afraid the results were a coincidence. I wonder if I can make this select with the values in Unix Timestamp format, and it will actually return me to the most current date.
In the case Timestamp is the column name, I edited this in the question because I was implying that the field was a Timestamp.
– Levi
@Levi Ok. Roger that.
– José Diz