分享到: ------解决方案-------------------- 如果是在数据库里读取的话,先desc一下 然后limit取前五十条就好了啊
select * from table desc order by id limit 0,49
要是还想升序排列 可以select * from (select * from table order by id desc limit 0,49 ) order by id asc
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn