I have a fix query as below, some strange behaviors which I try to understand it is whenever I run this query in different moments I got different results:( 134 , 143, 147, 152, 158)
This is how define in created table:
`user_registration_timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
select count(*) from users where user_registration_timestamp
>= "2016-10-03 12:33:26"
and user_registration_timestamp
< "2016-10-03 15:33:26";
Why this happened? timestamp is fixed, it is not variable, so what are those reasons for seeing this strange behavior with MySQL?