Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
try this way by using AND in the where 80 < id AND id<90 – sandip Jan 2 at 9:06
why downvote??? – doniyor Jan 2 at 9:07
2  
Hover over the downvote arrow for a clue. This question shows no research effort. You haven't shown us what you've tried and what hasn't worked, for example. – Charles Jan 2 at 9:16
please vote to close – doniyor Jan 2 at 9:43

closed as not a real question by doniyor, Leigh, Cerbrus, Mark, Sameer Jan 2 at 10:54

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 5 down vote accepted

You can use the keyword between

select * from tableName where id between 80 AND 90
share|improve this answer

Translating your pseudo code into SQL with exact the same behavior as described

80 < id < 90

leads to

SELECT * 
FROM table 
WHERE id BETWEEN 80+1 AND 90-1

Because WHERE include the bounds

or straight

SELECT * 
FROM table 
WHERE 80 < id AND id < 90
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.