Hello.
I have a closed source application which put a 13 character long timestamp in a MySQL database. One value is for example:
1277953190942
Now I have the problem, that I have to write a sql statement which will return me all results of a table which match a special day.
So I have for example 01. July 2010 and I will get all rows where the time is in between 01. July 2010 00:00:00 until 01. July 23:59:59.
How do I have to write this sql statement?
select * from myTable where TIMESTAMP = ???
Does anyone know this?
Best Regards.