mysql查询结果排序
发布网友
发布时间:2022-04-26 21:37
我来回答
共2个回答
热心网友
时间:2022-04-08 11:40
问题在于使用了group by 你这么用是在使用了分组之后,在分组内使用order by
select * from(
select count(StoreUserPKID),s.StoreUserPKID,s.StoreUserID,sum(v.TimeLength) from tStoreUser as s
inner join tVoucherDetails as v on s.StoreUserPKID=v.VoucherStoreUserPKID where DetailsVoucherAmount>0 and
v.remark='支付宝充值' group by StoreUserPKID )
order by v.TimeLength limit 0,20;
这样试试
热心网友
时间:2022-04-08 12:58
你的S没有定义是按照哪个字段排序