sql -leetcode 178. Rank Scores

Score 很好得到: select Score from Scores order by Score desc;
要得到rank, 可以通过比较比当前Score 大的Score 的个数得到:
select Score, (select count(distinct Score) from Scores where Score>=s.Score) Rank where Scores s order by Score desc;
或者:
select s.Score ,count(distinct t.Score)Rank from Scores s join Scores t on s.Score<=t.Score
得到join 两个表,
{"headers": ["Score", "Score"], "values": [[3.50, 3.50], [3.50, 3.65], [3.65, 3.65], [3.65, 3.65], [3.50, 4.00], [3.65, 4.00], [4.00, 4.00], [3.85, 4.00], [4.00, 4.00], [3.65, 4.00], [3.50, 3.85], [3.65, 3.85], [3.85, 3.85], [3.65, 3.85], [3.50, 4.00], [3.65, 4.00], [4.00, 4.00], [3.85, 4.00], [4.00, 4.00], [3.65, 4.00], [3.50, 3.65], [3.65, 3.65], [3.65, 3.65]]}
按s.Id 聚在一起:
select s.Score ,count(distinct t.Score)Rank from Scores s join Scores t on s.Score<=t.Score
group by s.Id
order by s.Score desc
sql -leetcode 178. Rank Scores的更多相关文章
- 【SQL】178. Rank Scores
		Write a SQL query to rank scores. If there is a tie between two scores, both should have the same ra ... 
- MySQL中变量的用法——LeetCode 178. Rank Scores
		Write a SQL query to rank scores. If there is a tie between two scores, both should have the same ra ... 
- [LeetCode#178]Rank Scores
		Write a SQL query to rank scores. If there is a tie between two scores, both should have the same ra ... 
- LeetCode Database: Rank Scores
		Write a SQL query to rank scores. If there is a tie between two scores, both should have the same ra ... 
- 178. Rank Scores - database - 178. Rank Scores (Oracle)
		题目链接 https://leetcode.com/problems/rank-scores/description/ 题意:对所有的分数按照降序进行排序,查询出分数和排名,排名相同的输出相同名 ... 
- 178. Rank Scores
		问题描述 解决方案 select sc.Score, (select count(*) from (select distinct Score from Scores ) ds where ds.Sc ... 
- [LeetCode] Rank Scores 分数排行
		Write a SQL query to rank scores. If there is a tie between two scores, both should have the same ra ... 
- [SQL]LeetCode178. 分数排名 | Rank Scores
		Write a SQL query to rank scores. If there is a tie between two scores, both should have the same ra ... 
- [LeetCode] Rank Scores -- 数据库知识(mysql)
		Write a SQL query to rank scores. If there is a tie between two scores, both should have the same ra ... 
随机推荐
- List双向链表容器
			list 容器实现了双向链表的数据结构,数据元素是通过链表指针串连成逻辑意义上的线 性表,这样,对链表的任一位置的元素进行插入.删除和查找都是极快速的. 图 2-7 是 list 采用的双向循环链表的 ... 
- js 正则表达式的使用(标志 RegExp exec() test() compile() $1...$9)
			一,标志 g (global,全局匹配标志) 执行正则表达式匹配或替换时,一般只要搜索到一个符合的文本就停止匹配或替换.使用该标志将搜索所有符合的文本直到文本末尾. i (ignoreCase,忽略大 ... 
- A1139. First Contact
			Unlike in nowadays, the way that boys and girls expressing their feelings of love was quite subtle i ... 
- 第二十九篇-Fragment动态用法
			效果图: 上节学习了静态添加Fragment的方法,这节学习动态添加方法. 主页面 layout.xml Fragment页面 layout2.xml 实现功能,当点击主页面的button时,将Fra ... 
- python--数据类型bytes
			在Python3以后,字符串和bytes类型彻底分开了.字符串是以字符为单位进行处理的,bytes类型是以字节为单位处理的. bytes数据类型在所有的操作和使用甚至内置方法上和字符串数据类型基本一样 ... 
- 做IT项目管理也需要具备产品思维
			不知道大家有没有听过大胡子姜志辉老师的公开课,我自己认为讲的还是不错的. 因为本身大胡子老师就是一个IT行业的人士,自己还经历了程序员.架构师.项目经理.敏捷教练.产品经理.公司持有人等多个角色.所以 ... 
- 使用vcftools或者gcta计算群体间固定指数(Fixation index,FST)
			下列所用到的数据均为千人基因组数据库 1.通过vcftools计算FST 命令行如下: ./vcftools --vcf input_data.vcf --weir-fst-pop populatio ... 
- io系列之字节流
			java中io流系统庞大,知识点众多,作为小白通过五天的视频书籍学习后,总结了io系列的随笔,以便将来复习查看. 本篇为此系列随笔的第一篇:io系列之字节流. 一.字节流的File读写操作. Inpu ... 
- ElasticSearch6.1.1集群搭建
			其实早就想研究ES了,因为之前用solr,资料较少(这倒不是问题,有问题去官网读文档),貌似用的人比较少?(别打我)前几天去京东面试,我觉得有必要了解一下es,昨天晚上简单了解了官方文档,今天居然鼓捣 ... 
- noi.openjudge 1.12.6
			http://noi.openjudge.cn/ch0112/06/ 总时间限制: 2000ms 内存限制: 65536kB 描述 传说很遥远的藏宝楼顶层藏着诱人的宝藏.小明历尽千辛万苦终于找到传 ... 
