zoukankan      html  css  js  c++  java
  • 常用的数据统计Sql 总结

     

    1. 统计各个条件下的数据

    select
    BatchId,sum(CardSum) 总金额,
    sum(case when Status=1 then CardSum else 0 end) as 已使用,
    sum(case when Status=2 then CardSum else 0 end) as 已冻结 
    from GiftCard 
    group by BatchId

    2. 统计每日,每月,每年的数据

    select year(AddTime) 年,month(AddTime) 月,day(AddTime) 日,COUNT(1) 数量,sum(CardSum) 销售合计
    from GiftCard
    group by year(AddTime),month(AddTime),day(AddTime)

    3. 某列去重统计

    select COUNT(BatchId),COUNT(distinct BatchId),COUNT(distinct BatchName)
    from GiftCard

    4. 行转列

    SELECT *
    FROM (
        SELECT 
            BatchName, 
            CardSum as TotAmount 
        FROM GiftCard
    
    ) as s
    PIVOT
    (    
        SUM(TotAmount)
        FOR BatchName IN (zx测试商品, test新人优惠券,测试高考大放送)
    )AS MyPivot

    5. 得到表中最小的未使用的ID号

    SELECT 
    (CASE WHEN EXISTS(SELECT * FROM GiftCard b WHERE b.Id = 1) THEN MIN(Id) + 1 ELSE 1 END) as Id 
    FROM GiftCard
    
    WHERE NOT Id IN (SELECT a.Id - 1 FROM GiftCard a)

    6. 查询某一列数据不重复的数量

    select * 
    from GiftCard a
    where not exists(select 1 from GiftCard where BatchName=a.BatchName and ID<a.ID)

    7. 按年统计1月到12个月的销量

    select year(AddTime) as '年',
    SUM(case when MONTH(AddTime)=1 then CardSum else 0 end ) as '一月',
    SUM(case when MONTH(AddTime)=2 then CardSum else 0 end ) as '二月',
    SUM(case when MONTH(AddTime)=3 then CardSum else 0 end ) as '三月',
    SUM(case when MONTH(AddTime)=4 then CardSum else 0 end ) as '四月',
    SUM(case when MONTH(AddTime)=5 then CardSum else 0 end ) as '五月',
    SUM(case when MONTH(AddTime)=6 then CardSum else 0 end ) as '六月',
    SUM(case when MONTH(AddTime)=7 then CardSum else 0 end ) as '七月',
    SUM(case when MONTH(AddTime)=8 then CardSum else 0 end ) as '八月',
    SUM(case when MONTH(AddTime)=9 then CardSum else 0 end ) as '九月',
    SUM(case when MONTH(AddTime)=10 then CardSum else 0 end ) as '十月',
    SUM(case when MONTH(AddTime)=11 then CardSum else 0 end ) as '十一月',
    SUM(case when MONTH(AddTime)=12 then CardSum else 0 end ) as '十二月'
    
    from GiftCard
    
    group by year(AddTime)
  • 相关阅读:
    centos7 部署kubernetes 1.20.1
    Pulse Width Modulation (PWM) interface
    imx6的IOMUX配置方法
    Linux下巧用转义符来完成多阶攻击
    记录一次半失败的php代码审计
    通过钉钉网页上的js学习xss打cookie
    PostMessage xss学习和挖掘
    解决Android微信支付官方demo运行失败
    Android集成银联支付,提示java.lang.UnsatisfieldLinkError错误
    解决 Plugin with id 'com.github.dcendents.android-maven' not found.
  • 原文地址:https://www.cnblogs.com/jiayc/p/9379036.html
Copyright © 2011-2022 走看看