php做一个排名,根据时间排名
php做一个排名,根据时间排名,图中是按时间倒序排的,排队字段需要按时间正序排。
正确的排队顺序与序号反过来了5.4.3.2.1
------解决方案--------------------不是order by time就行了么
------解决方案--------------------如果按id 逆序排可以这样写
select * from table order by id desc;
------解决方案--------------------你的 排队 列并没有数据
------解决方案--------------------order by 字段
desc or asc
升序 desc
降序 asc
------解决方案--------------------你的序号是输出时 php 代码产生的
那么你的排名就是 总数-序号
序号 排名
1 5
2 4
3 3
4 2
5 1