加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
分数排名.sql 422 Bytes
一键复制 编辑 原始数据 按行查看 历史
姚振鑫 提交于 2020-05-12 10:37 . sql
Create table Scores
(Id int primary key identity(1,1) not null,
Score decimal(20,2) not null,
)
insert into Scores(Score) select 3.5
union all select 3.56
union all select 4.00
union all select 3.85
union all select 4.00
union all select 3.65
select Score ,( SELECT
count(DISTINCT round(score,2)) from Scores
where round( score,2) >= round (s.score,2)
)as Rank from Scores s Order by Score desc;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化