Home > Backend Development > PHP Tutorial > SQL排序问题

SQL排序问题

WBOY
Release: 2016-06-06 20:40:46
Original
1045 people have browsed it

有这样一张表,表里面有着
id,start_time 这两个字段

我想实现得到一个列表,排在前面的是start_time>now(),
排在后面的是start_time

以前我用的分页方法是API提供last_id这样一个字段,移动端传0表示下拉刷新得到第一页,获得第二页的时候把第一页的最后一个id当做last_id传给API,这样服务器就传id

不知道这样是不是流行的分页方法...

回复内容:

有这样一张表,表里面有着
id,start_time 这两个字段

我想实现得到一个列表,排在前面的是start_time>now(),
排在后面的是start_time

以前我用的分页方法是API提供last_id这样一个字段,移动端传0表示下拉刷新得到第一页,获得第二页的时候把第一页的最后一个id当做last_id传给API,这样服务器就传id

不知道这样是不是流行的分页方法...

如果你非要实现这一的排序,那么可以order by start_time<now><br> 解释:start_time<now> </now></now>

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template