Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
if by id, then you can do this:SELECT * FROM table WHERE id BETWEEN 11 and 20
It’s easier for you to cut it off on the output side, you got an array, for example, in php and parse it foreach
$i=0;
foreach($array as $item){
if(10<$i || $i>19)
continue;
echo $item['ваше_значение'];
$i++;
}
SELECT * FROM table LIMIT 11, 10
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question