zoukankan      html  css  js  c++  java
  • 最近做统计用到的几个常用sql

    计算同比

    SELECT
    	old.now_time,
    	ROUND( ( new.count - old.count ) / old.count * 100, 2 ),
    	new.count ncount,
    	old.count ocount 
    FROM (
    SELECT
    	sum( IF ( b.count > 1, 1, 1 ) ) count,
    	b.now_time,
    	b.tenant_code 
    FROM
    	(
    	SELECT
    		date_format( ro.create_dt, '%Y-%m' ) AS now_time,
    		a.tenant_code,
    		a.order_no,
    		count( a.id ) count 
    	FROM
    		t_rep_order_timeout a 
    	INNER JOIN t_rep_order ro on 
    		a.tenant_code = ro.tenant_code and a.order_no = ro.order_no
    	WHERE
    		a.tenant_code = 'zlyy' 
    	GROUP BY
    		date_format( ro.create_dt, '%Y-%m' ),
    		a.tenant_code,
    		a.order_no 
    	) b 
    GROUP BY
    	b.now_time,
    	b.tenant_code
    	) new 
    LEFT JOIN
    (SELECT
    	sum( IF ( b.count > 1, 1, 1 ) ) count,
    	b.now_time,
    	b.tenant_code 
    FROM
    	(
    	SELECT
    		date_format( DATE_ADD( ro.create_dt, INTERVAL 1 YEAR ), '%Y-%m') AS now_time,
    		a.tenant_code,
    		a.order_no,
    		count( a.id ) count 
    	FROM
    		t_rep_order_timeout a 
    	INNER JOIN t_rep_order ro on 
    		a.tenant_code = ro.tenant_code and a.order_no = ro.order_no
    	WHERE
    		a.tenant_code = 'zlyy' 
    	GROUP BY
    		date_format( DATE_ADD( ro.create_dt, INTERVAL 1 YEAR ), '%Y-%m'),
    		a.tenant_code,
    		a.order_no 
    	) b 
    GROUP BY
    	b.now_time,
    	b.tenant_code) old 
    	on old.tenant_code = new.tenant_code and old.now_time = new.now_time
    

    计算环比

    SELECT
    	old.now_time,
    	ROUND( ( new.count - old.count ) / old.count * 100, 2 ),
    	new.count ncount,
    	old.count ocount 
    FROM (
    SELECT
    	sum( IF ( b.count > 1, 1, 1 ) ) count,
    	b.now_time,
    	b.tenant_code 
    FROM
    	(
    	SELECT
    		date_format( ro.create_dt, '%Y-%m' ) AS now_time,
    		a.tenant_code,
    		a.order_no,
    		count( a.id ) count 
    	FROM
    		t_rep_order_timeout a 
    	INNER JOIN t_rep_order ro on 
    		a.tenant_code = ro.tenant_code and a.order_no = ro.order_no
    	WHERE
    		a.tenant_code = 'zlyy' 
    	GROUP BY
    		date_format( ro.create_dt, '%Y-%m' ),
    		a.tenant_code,
    		a.order_no 
    	) b 
    GROUP BY
    	b.now_time,
    	b.tenant_code
    	) new 
    LEFT JOIN
    (SELECT
    	sum( IF ( b.count > 1, 1, 1 ) ) count,
    	b.now_time,
    	b.tenant_code 
    FROM
    	(
    	SELECT
    		date_format( DATE_ADD( ro.create_dt, INTERVAL 1 MONTH ), '%Y-%m') AS now_time,
    		a.tenant_code,
    		a.order_no,
    		count( a.id ) count 
    	FROM
    		t_rep_order_timeout a 
    	INNER JOIN t_rep_order ro on 
    		a.tenant_code = ro.tenant_code and a.order_no = ro.order_no
    	WHERE
    		a.tenant_code = 'zlyy' 
    	GROUP BY
    		date_format( DATE_ADD( ro.create_dt, INTERVAL 1 MONTH ), '%Y-%m'),
    		a.tenant_code,
    		a.order_no 
    	) b 
    GROUP BY
    	b.now_time,
    	b.tenant_code) old 
    	on old.tenant_code = new.tenant_code and old.now_time = new.now_time
    

    获取某一年份所有月份

    SELECT
    CASE
    		
    	WHEN
    		length( mon ) = 1 THEN
    			concat( '2019-0', mon ) ELSE concat( '2019-', mon ) 
    		END months 
    FROM
    	( SELECT @m := @m + 1 mon FROM t_rep_order_timeout, ( SELECT @m := 0 ) a ) aa 
    	LIMIT 12
    

    此处所用的辅助表t_rep_oder_timeot表数据必须超过12条

    删除表内的重复数据

    DELETE t 
    FROM
    	interview t
    	LEFT JOIN ( SELECT title, min( id ) AS min_id FROM interview GROUP BY title ) t1 ON t.id = t1.min_id 
    WHERE
    	t1.min_id IS NULL;
    

    欢迎搜索关注本人与朋友共同开发的微信面经小程序【大厂面试助手】和公众号【微瞰技术】

    file
    file

  • 相关阅读:
    CSS选择器
    python——前端常用的标签
    用socket发送信息在浏览器上显示出来
    Python并发编程-事件驱动模型
    python中的协程
    controller中两个方法之间共享一个变量LinkedHashMap
    分布式缓存和本地缓存
    Java基础方法
    log4j2配置日志大小,个数等
    开发一个根据xml创建代理类的小框架
  • 原文地址:https://www.cnblogs.com/zhendiao/p/14061223.html
Copyright © 2011-2022 走看看