I am using InnoDB on MySQL and I have problem with selecting data from log
when I select
SELECT * FROM `log`
WHERE `updated` >= '20140110144000' AND `updated` <= '20140110150000'
ORDER BY `updated` ASC
I will get two different result
in execution at time 15:00 will get 0 rows
in execution at time 16:00 will get over 2.000 rows
how is it possible ? innodb memory cache ?