啊坡糍嘚
啊坡糍嘚
全部文章
分类
题解(4)
归档
标签
去牛客网
登录
/
注册
啊坡糍嘚的博客
全部文章
(共4篇)
题解 | #异常的邮件概率#
select date,round(sum(case when type='no_completed' then 1 else 0 end)/count(type),3) as p from email where send_id in (select id from user where is_...
Mysql
2021-09-19
2
537
题解 | #出现三次以上相同积分的情况#
select t.number from (select *,rank()over(order by number) as rank2 from grade) t group by t.rank2 having count(1)>=3 先用窗口函数对积分进行排名,相同的积分名次相同。再以排...
Mysql
2021-09-18
1
446
题解 | #对于employees表中,给出奇数行的first_name#
select e.first_name from employees e join (select first_name,row_number()over(order by first_name) as rank2 from employees) t on e.first_name=t.first...
Mysql
2021-09-18
0
386
题解 | #查找排除当前最大、最小salary之后的员工的平均工资avg_salary#
select avg(salary) as avg_salaryfrom salarieswhere salary !=(select max(salary) from salaries where to_date='9999-01-01')and salary !=(select min(sala...
sql
刷题
数据分析
2021-09-13
0
538