Reputation: 1661
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
Reputation: 63065
SELECT * FROM your_tbl WHERE column1 BETWEEN 60000 AND 200000;
Upvotes: 4