How to make the query to retrieve from database only the records that have the time equals to ‘today’. I store my dates as long.
E.g:
DateColumn (The name of my column) and the name of my table is MyTable
1360054701278 (Tuesday, February 5, 2013 8:58:21 AM GMT)
1359795295000 (Saturday, February 2, 2013 8:54:55 AM GMT)
So how should I make the query for this example in order to retrieve the first record (because it is the date equal to today)?
Any suggestion would be appreciated.
Thanks
sorry for not seeing that, your problem were the additional milliseconds saved in your column.
The solution was to remove them by division 😉