i am going to select some certain ids from db. my logic is this: depending on hour, i am selecting some certain items like this, because the job is running in cronjob, and it runs every *:31 minutes, so every hour, this is my logic:
pseudo code:
get hour // 08:30
take 08 and mult(08,10); // 80
get items from db whose ids lie between 80 < id < 90
how can i do this query in mysql? this 80 < id < 90 condition i need in mysql in php
