sql - How to select rows after last 10 records in php mysql? -
i want know how call after 10 rows in flash
column. want call category = today
. possible?
for example
select * news category='today' , flash='true' limit 60
is you're looking (it's official solution shown in mysql select syntax)?
select * news flash='true' limit 10, 18446744073709551615;
update:
after reading comments, maybe you're looking for:
select * (select * `news` (`flash` = 'true') limit 10, 18446744073709551615) `after_flash` `after_flash`.`category` = 'today';
Comments
Post a Comment