【SQL】585. 2016年的投资 (group by 执行图解)

前述

知识点学习:看一遍就理解:group by 详解 ,图解讲解细致,推荐学习。

题目描述

leetcode题目:585. 2016年的投资


  1. 定位pid:符合两个条件的。直接用条件筛选即可。指定字段in, not in,再结合group by having等。
  2. 再加和,注意小数点后保留两位 => ROUND()函数

写法一

sql 复制代码
select round(sum(A.tiv_2016), 2) as tiv_2016
from Insurance A
where A.tiv_2015 in (
    select tiv_2015
    from Insurance
    group by tiv_2015
    having count(*) > 1
) 
and (lat, lon) in (
    select lat, lon
    from Insurance
    group by lat, lon
    having count(*) = 1
)

写法二

不同点:官方题解中用了concat()函数,不用也行

sql 复制代码
select round(sum(A.tiv_2016), 2) as tiv_2016
from Insurance A
where A.tiv_2015 in (
    select tiv_2015 
    from Insurance
    group by tiv_2015
    having count(*) > 1
    )
and concat(lat, lon) in(
    select concat(lat, lon)
    from Insurance
    group by lat, lon 
    having count(*) = 1
)

记录自己思维错误点:

  1. 要做筛选,从表中挑选出需要的数据,而不要总想着删除表中多余行。(一开始想的是,如何把两个重复经纬度的去掉? )
  2. 注意:where子句还处于"确定"结果集的过程中,因而不能使用聚集函数。用having过滤即可。
  3. group by 细节学习:看一遍就理解:group by 详解
相关推荐
alphaTao20 分钟前
LeetCode 每日一题 2024/11/18-2024/11/24
算法·leetcode
kitesxian29 分钟前
Leetcode448. 找到所有数组中消失的数字(HOT100)+Leetcode139. 单词拆分(HOT100)
数据结构·算法·leetcode
gma99944 分钟前
Etcd 框架
数据库·etcd
爱吃青椒不爱吃西红柿‍️1 小时前
华为ASP与CSP是什么?
服务器·前端·数据库
Yz98761 小时前
hive的存储格式
大数据·数据库·数据仓库·hive·hadoop·数据库开发
武子康1 小时前
大数据-230 离线数仓 - ODS层的构建 Hive处理 UDF 与 SerDe 处理 与 当前总结
java·大数据·数据仓库·hive·hadoop·sql·hdfs
苏-言2 小时前
Spring IOC实战指南:从零到一的构建过程
java·数据库·spring
Ljw...2 小时前
索引(MySQL)
数据库·mysql·索引
菠萝咕噜肉i2 小时前
超详细:Redis分布式锁
数据库·redis·分布式·缓存·分布式锁
长风清留扬2 小时前
一篇文章了解何为 “大数据治理“ 理论与实践
大数据·数据库·面试·数据治理