Mihai Viteazu
Mihai Viteazu

Reputation: 1661

MySql - Select From ID To ID

How i can select on php with mysql command from ID lets say 13000 to ID 50000, or lets say from ID 60000 to id 200000 ...

I try to find how but didnt find nothing helpful


Upvotes: 0

Views: 52

Answers (1)

Damith
Damith

Reputation: 63065

SELECT * FROM your_tbl 
WHERE column1 BETWEEN 60000 AND 200000; 

Upvotes: 4

Related Questions