云服务器网:购买云服务器和VPS必上的网站!

怎样使用:mysql怎样使用分组排序

mysql怎样使用分组排序mysql中使用分组排序的方法在mysql中使用order by方法实现分组排序实现方法以下:select id, (@rowno := @rowno + 1) as rank,score,(C.end_time – C.start_

mysql怎样使用分组排序

mysql中使用分组排序的方法

在mysql中使用order by方法实现分组排序

实现方法以下:

select id, (@rowno := @rowno + 1) as rank,

score,

(C.end_time - C.start_time) as timeConsuming,

start_time,

real_name,

tel,

expiry_code

from (SELECT *

FROM (select *

from t_q_order B

where B.score > 0

and B.tel IS NOT NULL

order by B.score desc,

(B.end_time - B.start_time) asc,

B.start_time asc) as A

group by A.tel

ORDER BY A.score desc,

(A.end_time - A.start_time) asc,

A.start_time asc)

as C,

(select @rowno := 0) t

where (C.end_time - C.start_time) > 5 limit 0,50;

本文来源:https://www.yuntue.com/post/58171.html | 云服务器网,转载请注明出处!

关于作者: yuntue

云服务器(www.yuntue.com)是一家专门做阿里云服务器代金券、腾讯云服务器优惠券的网站,这里你可以找到阿里云服务器腾讯云服务器等国内主流云服务器优惠价格,以及海外云服务器、vps主机等优惠信息,我们会为你提供性价比最高的云服务器和域名、数据库、CDN、免费邮箱等企业常用互联网资源。

为您推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注