SQL语句先根据ID统计条数再计算排名 查询 pCorrect=1时 PUserPoliceId=110 这个用户的排名。
每一条数据都是用户答题的记录。pCorrect=1为用户答题正确时。。现在就是想查询某个用户答对题目的排名为第几...
每一条数据都是用户答题的记录。pCorrect=1 为用户答题正确时。。现在就是想查询某个用户答对题目的排名为第几
展开
1个回答
展开全部
select PUserPoliceId,
rownum '排名'
from(
select PUserPoliceId, c
from (select PUserPoliceId, count(1) c
from table
where pCorrect = 1
group by PUserPoliceId)
order by c desc)
where PUserPoliceId = 110;
rownum '排名'
from(
select PUserPoliceId, c
from (select PUserPoliceId, count(1) c
from table
where pCorrect = 1
group by PUserPoliceId)
order by c desc)
where PUserPoliceId = 110;
更多追问追答
追问
我这是mysql的数据库 的。。
追答
那不好意思了、、、、
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询