SQL server 计算分月,分年,分季度的同环比

SQL server 计算分月,分年,分季度的环比

--- dbo.ads_product_category_sale_money_yoy_mom_month-- Insert statements for procedure here-- 开始 TRY 块  BEGIN TRY  -- 执行可能引发异常的 SQL 语句  DELETE FROM dbo.ads_product_category_sale_money_yoy_mom_month WHERE dt = @DateThreshold;INSERT INTO dbo.ads_product_category_sale_money_yoy_mom_month ([dt],[ym],[ord],[title],[month_money],[previous_month_money],[mom_growth_rate])select dt,ym,product_sort1,product_menuname,month_money,previous_month_money,CASE WHEN previous_month_money = 0 THEN null ELSE ((month_money - previous_month_money) / previous_month_money) * 100 END AS mom_growth_ratefrom(select t2.dt,product_sort1,product_menuname,ym,t2.year,t2.month,t2.month_money,case when monthdiff = 1 then previous_month_money else 0 end  previous_month_moneyfrom(select dt,product_sort1,product_menuname,ym,SUBSTRING(ym, 1, 4) AS year,CAST(SUBSTRING(ym, 6, 2) AS INT) AS month,previous_month,month_product_order_sale_money as month_money,previous_month_money,DATEDIFF(MONTH, CAST(CONCAT(previous_month, '-01') AS DATE) , CAST(CONCAT(ym, '-01') AS DATE)) monthdifffrom(selectdt,product_sort1,product_menuname,ym,lag(ym, 1, '1970-01') over (partition by product_sort1 order by ym)  previous_month,lag(month_product_order_sale_money, 1, 0) over (partition by product_sort1 order by ym) previous_month_money,month_product_order_sale_moneyfromdws_product_category_sale_analyse_month where dt = @DateThreshold ) t1) t2) t3END TRY  -- 开始 CATCH 块  BEGIN CATCH  -- 捕捉异常并执行特定的操作  DECLARE @ErrorMessage51 NVARCHAR(4000);  SET @ErrorMessage51 = ERROR_MESSAGE();  RAISERROR (@ErrorMessage51, 16, 1);  -- 继续执行其他操作  -- ...  END CATCH--- dbo.ads_product_category_sale_money_yoy_pop_quarter-- Insert statements for procedure here-- 开始 TRY 块  BEGIN TRY  -- 执行可能引发异常的 SQL 语句  DELETE FROM dbo.ads_product_category_sale_money_yoy_pop_quarter WHERE dt = @DateThreshold;INSERT INTO dbo.ads_product_category_sale_money_yoy_pop_quarter ([dt],[year],[quarter],[ord],[title],[quarter_money],[previous_quarter_money],[qoq_growth_rate])SELECT @DateThreshold as dt,year,quarter,product_sort1,product_menuname,quarter_money,previous_quarter_money,CASE WHEN previous_quarter_money = 0 THEN null ELSE ((quarter_money - previous_quarter_money) / previous_quarter_money) * 100 END AS qoq_growth_ratefrom (SELECT year,quarter,product_sort1,product_menuname,quarter_money,case when (year = previous_year and quarter - previous_quarter = 1) or (year - previous_year = 1 and previous_quarter = 4 and quarter -previous_quarter = -3 ) then previous_quarter_money else 0 end  previous_quarter_money	from (SELECT year,quarter,product_sort1,product_menuname,quarter_money,CAST(SUBSTRING(previous_year_quarter, 1, 4) as INT) as previous_year,CAST(SUBSTRING(previous_year_quarter, 7, 1) as INT) as  previous_quarter,previous_quarter_moneyfrom(SELECT product_sort1,product_menuname,year,quarter,year_quarter,LAG(year_quarter, 1, '1970 Q1') OVER (PARTITION BY product_sort1,product_menuname ORDER BY year_quarter) AS previous_year_quarter,quarter_money,LAG(quarter_money, 1, 0) OVER (PARTITION BY product_sort1,product_menuname ORDER BY year_quarter) AS previous_quarter_moneyFROM (SELECT product_sort1,product_menuname,year,quarter,CONCAT([year], ' Q', [quarter]) AS year_quarter,quarter_moneyFROM (select product_sort1,product_menuname,year,quarter,sum(month_product_order_sale_money) as quarter_money from dws_product_category_sale_analyse_month WHERE dt = @DateThresholdgroup by product_sort1,product_menuname,year,quarter) t1) t3) t4) t5) t6;END TRY  -- 开始 CATCH 块  BEGIN CATCH  -- 捕捉异常并执行特定的操作  DECLARE @ErrorMessage52 NVARCHAR(4000);  SET @ErrorMessage52 = ERROR_MESSAGE();  RAISERROR (@ErrorMessage52, 16, 1);  -- 继续执行其他操作  -- ...  END CATCH--- dbo.ads_product_category_sale_money_yoy_year-- Insert statements for procedure here-- 开始 TRY 块  BEGIN TRY  -- 执行可能引发异常的 SQL 语句  DELETE FROM dbo.ads_product_category_sale_money_yoy_year WHERE dt = @DateThreshold;INSERT INTO dbo.ads_product_category_sale_money_yoy_year ([dt],[year],[ord],[title],[year_money],[previous_year_money],[yoy_growth_rate])select@DateThreshold as dt,year,product_sort1,product_menuname, year_money,previous_year_money,CASE WHEN previous_year_money = 0 THEN null ELSE ((year_money - previous_year_money) / previous_year_money) * 100 END AS yoy_growth_ratefrom (selectproduct_sort1,product_menuname,year,previous_year,year_money,case when yeardiff = 1 then previous_year_money else 0 end previous_year_moneyfrom (selectproduct_sort1,product_menuname, year,previous_year,year_money,previous_year_money,year - previous_year as yeardifffrom (selectproduct_sort1,product_menuname, year,lag(cast(year as int ),1,'1970') over (partition by product_sort1 order by year) previous_year,year_money,lag(year_money, 1, 0) over (partition by product_sort1 order by year) previous_year_moneyfrom (select product_sort1,product_menuname,year,sum(month_product_order_sale_money) as year_money from dws_product_category_sale_analyse_month WHERE dt = @DateThresholdgroup by product_sort1,product_menuname,year) t1) t3) t4) t2;END TRY  -- 开始 CATCH 块  BEGIN CATCH  -- 捕捉异常并执行特定的操作  DECLARE @ErrorMessage53 NVARCHAR(4000);  SET @ErrorMessage53 = ERROR_MESSAGE();  RAISERROR (@ErrorMessage53, 16, 1);  -- 继续执行其他操作  -- ...  END CATCH

SQL server 计算分月,分年,分季度的同环比

--- dbo.ads_sale_money_yoy_mom_month-- Insert statements for procedure here-- 开始 TRY 块  BEGIN TRY  -- 执行可能引发异常的 SQL 语句  DELETE FROM dbo.ads_sale_money_yoy_mom_month WHERE dt = @DateThreshold;WITH sales AS (  SELECT  [year],  month,  [month_sale_money] as month_money,  LAG([month_sale_money], 12) OVER (PARTITION BY [year],[month] ORDER BY [year],[month]) AS same_month_last_year_money,  ROW_NUMBER() OVER (PARTITION BY [year], [month] ORDER BY [month_sale_money]) AS rn  FROM (select year,month,month_sale_moneyfrom(select year,CAST(SUBSTRING(ym, 6, 2) AS INT) AS month,month_sale_moneyfrom dws_sale_analyse_month where dt = @DateThreshold) t1 			) t2),  months AS (  SELECT DISTINCT [year], month FROM sales  )  INSERT INTO dbo.ads_sale_money_yoy_mom_month ([dt],[ym],[month_money],[previous_month_money],[same_month_last_year_money],[yoy_growth_rate],[mom_growth_rate])select @DateThreshold as dt,CONCAT(CAST(year AS VARCHAR), '-', FORMAT(month, '00')) AS ym,month_money,previous_month_money,same_month_last_year_money,CASE WHEN same_month_last_year_money = 0 THEN null ELSE ((month_money - same_month_last_year_money) / same_month_last_year_money) * 100 END AS yoy_growth_rate,CASE WHEN previous_month_money = 0 THEN null ELSE ((month_money - previous_month_money) / previous_month_money) * 100 END AS mom_growth_ratefrom (SELECT DISTINCT q.[year],q.[month],case when s.[month_money] is NULL then 0 else s.[month_money] end AS month_money,    case when sqs.[month_money] is NULL then 0 else sqs.[month_money] end AS same_month_last_year_money,t4.previous_month_moneyFROM months q  JOIN sales s ON q.[year] = s.[year] AND q.[month] = s.[month] AND s.rn = 1  LEFT JOIN sales sqs ON q.[year] - 1 = sqs.[year] AND q.[month] = sqs.[month] AND sqs.rn = 1left join (select t2.dt,ym,t2.year,t2.month,t2.month_money,case when monthdiff = 1 then previous_month_money else 0 end  previous_month_moneyfrom(select dt,ym,SUBSTRING(ym, 1, 4) AS year,CAST(SUBSTRING(ym, 6, 2) AS INT) AS month,previous_month,month_sale_money as month_money,previous_month_money,DATEDIFF(MONTH, CAST(CONCAT(previous_month, '-01') AS DATE) , CAST(CONCAT(ym, '-01') AS DATE)) monthdifffrom(selectdt,ym,lag(ym, 1, '1970-01') over (partition by dt order by ym)  previous_month,lag(month_sale_money, 1, 0) over (partition by dt order by ym) previous_month_money,month_sale_moneyfromdws_sale_analyse_month where dt = @DateThreshold) t1) t2) t4 on q.year = t4.year and q.month = t4.month) t1;END TRY  -- 开始 CATCH 块  BEGIN CATCH  -- 捕捉异常并执行特定的操作  DECLARE @ErrorMessage23 NVARCHAR(4000);  SET @ErrorMessage23 = ERROR_MESSAGE();  RAISERROR (@ErrorMessage23, 16, 1);  -- 继续执行其他操作  -- ...  END CATCH--- dbo.ads_sale_money_yoy_pop_quarter-- Insert statements for procedure here-- 开始 TRY 块  BEGIN TRY  -- 执行可能引发异常的 SQL 语句  DELETE FROM dbo.ads_sale_money_yoy_pop_quarter WHERE dt = @DateThreshold;WITH sales AS (SELECT[year],[quarter],[quarter_money],LAG([quarter_money], 2) OVER (PARTITION BY [year], [quarter] ORDER BY [year], [quarter]) AS same_quarter_last_year_money,ROW_NUMBER() OVER (PARTITION BY [year], [quarter] ORDER BY [quarter_money]) AS rnFROM (SELECT [year],[quarter],sum(month_sale_money) as quarter_money FROM [big_data].[dbo].[dws_sale_analyse_month] where dt = @DateThreshold  group by year, quarter) t1), quarters AS (SELECT DISTINCT [year], [quarter] FROM sales)INSERT INTO dbo.ads_sale_money_yoy_pop_quarter ([dt],[year],[quarter],[quarter_money],[previous_quarter_money],[same_quarter_last_year_money],[yoy_growth_rate],[qoq_growth_rate])select @DateThreshold as dt,year,quarter,quarter_money,previous_quarter_money,same_quarter_last_year_money,CASE WHEN same_quarter_last_year_money = 0 THEN null ELSE ((quarter_money - same_quarter_last_year_money) / same_quarter_last_year_money) * 100 END AS yoy_growth_rate,CASE WHEN previous_quarter_money = 0 THEN null ELSE ((quarter_money - previous_quarter_money) / previous_quarter_money) * 100 END AS qoq_growth_ratefrom (SELECT DISTINCT q.[year],q.[quarter],case when s.[quarter_money] is NULL then 0 else s.[quarter_money] end AS quarter_money,   case when pqs.[previous_quarter_money] is NULL then 0 else pqs.[previous_quarter_money] end AS previous_quarter_money,   case when sqs.[quarter_money] is NULL then 0 else sqs.[quarter_money] end AS same_quarter_last_year_money  FROM quarters q  JOIN sales s ON q.[year] = s.[year] AND q.[quarter] = s.[quarter] AND s.rn = 1   LEFT JOIN sales sqs ON q.[year] - 1 = sqs.[year] AND q.[quarter] = sqs.[quarter] AND sqs.rn = 1LEFT JOIN (SELECT dt,SUBSTRING(year_quarter, 1, 4) AS year,SUBSTRING(year_quarter, 7, 1) AS quarter,LAG(year_quarter, 1, '1970 Q1') OVER (PARTITION BY dt ORDER BY year_quarter) AS previous_year,quarter_money,LAG(quarter_money, 1, 0) OVER (PARTITION BY dt ORDER BY year_quarter) AS previous_quarter_moneyFROM (SELECT @DateThreshold AS dt, CONCAT([year], ' Q', [quarter]) AS year_quarter,SUM(month_sale_money) AS quarter_moneyFROM [big_data].[dbo].[dws_sale_analyse_month] WHERE dt = @DateThreshold  GROUP BY CONCAT([year], ' Q', [quarter])) t) pqs ON q.[year] = pqs.[year] AND q.[quarter] = pqs.[quarter]) t1order by year, quarter asc;END TRY  -- 开始 CATCH 块  BEGIN CATCH  -- 捕捉异常并执行特定的操作  DECLARE @ErrorMessage22 NVARCHAR(4000);  SET @ErrorMessage22 = ERROR_MESSAGE();  RAISERROR (@ErrorMessage22, 16, 1);  -- 继续执行其他操作  -- ...  END CATCH--- dbo.ads_sale_money_yoy_year-- Insert statements for procedure here-- 开始 TRY 块  BEGIN TRY  -- 执行可能引发异常的 SQL 语句  DELETE FROM dbo.ads_sale_money_yoy_year WHERE dt = @DateThreshold;INSERT INTO dbo.ads_sale_money_yoy_year ([dt],[year],[year_money],[previous_year_money],[yoy_growth_rate])selectdt,year,--- lag(cast(year as int ),1,'1970') over (partition by dt order by year) previous_year,year_money,previous_year_money,CASE WHEN previous_year_money = 0 THEN null ELSE ((year_money - previous_year_money) / previous_year_money) * 100 END AS yoy_growth_ratefrom (selectdt,year,lag(cast(year as int ),1,'1970') over (partition by dt order by year) previous_year,year_money,lag(year_money, 1, 0) over (partition by dt order by year) previous_year_moneyfrom (select@DateThreshold dt,year,sum(month_sale_money) as year_moneyfromdws_sale_analyse_month where dt = @DateThreshold group by year) t1) t2;END TRY  -- 开始 CATCH 块  BEGIN CATCH  -- 捕捉异常并执行特定的操作  DECLARE @ErrorMessage24 NVARCHAR(4000);  SET @ErrorMessage24 = ERROR_MESSAGE();  RAISERROR (@ErrorMessage24, 16, 1);  -- 继续执行其他操作  -- ...  END CATCH

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/234560.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Navicat16的下载与安装

Navicat16的下载与安装 1、官网下载地址:https://www.navicat.com.cn/download/navicat-premium 当然有的朋友在官网下载比较慢,我也为大家准备好了百度网盘链接 链接:https://pan.baidu.com/s/1dUcTSHr3761Oayh0-WfolA?pwdwfpl 提取码&am…

LCD12864(St7920/St7921)+超声波测距模块+STC89C52

/******************************************************************************/ /* 晶振:11.0592M */ /* 接线:模块TRIG接 P1.2 ECH0 接P1.1 …

Nature Commun|ATAC-seq探究复发性小儿B系急性淋巴细胞白血病的染色质可及性图谱

表观基因组学分析是解释非编码基因组功能的重要方法之一。表观基因组学特征作为肿瘤细胞的基本特征,对发病机制、临床行为和治疗具有影响。在所有表观基因组标记中,组蛋白修饰和 DNA 甲基化已得到最广泛的研究,以深入了解表观基因组失调。 染…

openpyxl: Value must be either numerical or a string containing a wildcard

openpyxl: Value must be either numerical or a string containing a wildcard:https://blog.csdn.net/ppdyhappy/article/details/132622946 https://q.cnblogs.com/q/143264/ 后排查在其他电脑上相同的py脚本,相同的excel文件,程序正常;…

车辆违规实线变道检测系统:融合Gold-YOLO改进YOLOv8

1.研究背景与意义 项目参考AAAI Association for the Advancement of Artificial Intelligence 研究背景与意义 随着城市化进程的加快和交通工具的普及,道路交通安全问题日益凸显。其中,车辆违规实线变道是导致交通事故的重要原因之一。在道路上&…

【办公软件】C# NPOI 操作Excel 案例

文章目录 1、加入NPOI 程序集,使用nuget添加程序集2、引用NPOI程序集3、设置表格样式4、excel加载图片5、导出excel 1、加入NPOI 程序集,使用nuget添加程序集 2、引用NPOI程序集 private IWorkbook ExportExcel(PrintQuotationOrderViewModel model){//…

虾皮电商 电商平台:东南亚最大的跨境电商平台

虾皮电商(Shopee)是新加坡的一家跨境电商平台,隶属于Sea Group公司。虾皮电商以其强大的社交功能和便捷的物流服务而闻名,为卖家和买家提供了出色的交易体验。本文将介绍虾皮电商的发展历程、优势以及为卖家提供的一站式解决方案。…

JVM征服面试篇-亿及流量系统设计(学习笔记)

一、如何拆解亿级流量系统-百万级结算系统如何设置JVM 1.先确认如下问题: 2.第一步:确定业务背景和核心流程 3.第二步:确认系统的压力在哪里 3.第三步:确定QPS 4.第四步:确定单笔订单耗时,寻找性能瓶颈 5.…

【Spring Cloud】集成分布式事务Seata2.0.0

Seata配置篇 下载seata-server 下载地址:Releases seata/seata GitHub 创建库导入SQL 在/script/server/db下的dm.sql下导入即可。具体的SQL如下 -- -------------------------------- The script used when storeMode is db -------------------------------…

金蝶报表二开

本案例描述: 折旧明细报表中加入字段:存放地点、成本中心部门、使用人组织三个字段。 参考社区案例:报表二次开发添加自定义字段的指导方案 步骤: 1、加入报表插件 继承原报表的类。重写BuilderReportSqlAndTempTable、GetRe…

MyBatis 运行原理

MyBatis框架在操作数据库时,大体经过了8个步骤: 1.读取 MyBatis 配置文件:mybatis-config.xml 为 MyBatis 的全局配置文件,配置了 MyBatis 的运行环境等信息,例如数据库连接信息。 2.加载映射文件:映射文…

JDBC编程(主要针对其流程)

JDBC编程 注:在本篇博客中,使用的数据库是mysql!!! 一、JDBC编程六步 1、注册驱动 这步就是在告诉Java程序,即将要连接的为哪个品牌的数据库, 这里有两种方法 ① //就是使用一个了多态&am…

关于iOSAPP的侧滑功能我有话说

关于iOSAPP的侧滑功能我有话说 什么是iOS的侧滑,就是iOS系统自带一个右滑返回 它的优点是效果好比较丝滑,不好的点就是关于使用的说明网络上很多文章都没有说清楚,今天就来聊聊这个功能 iOS的侧滑怎么启用呢? 为了作用到你后面…

Dokit 开源库:简化 Android 应用开发的利器

Dokit 开源库:简化 Android 应用开发的利器 一、Dokit 简介二、Dokit 功能三、Dokit 使用3.1 DoKit Android 最新版本3.2 DoKit Android 接入步骤 四、总结 在 Android 应用开发过程中,我们经常需要处理调试、性能优化和用户体验等方面的问题。然而&…

stm32学习总结:4、Proteus8+STM32CubeMX+MDK仿真串口收发

stm32学习总结:4、Proteus8STM32CubeMXMDK仿真串口收发 文章目录 stm32学习总结:4、Proteus8STM32CubeMXMDK仿真串口收发一、前言二、资料收集三、STM32CubeMX配置串口1、配置开启USART12、设置usart中断优先级3、配置外设独立生成.c和.h 四、MDK串口收发…

期货股市联动(期股联动助推资本市场上扬)

期股联动——期货股市助推资本市场上扬 随着我国资本市场的不断发展,期货和股票这两个市场也在逐渐紧密地联系起来。期货和股票的相互作用是一种“期股联动”,它能够促进资本市场的上扬。 期货与股票市场 期货市场是一种标准化的场外交易市场&#xf…

【jvm从入门到实战】(十) 实战篇-内存调优

内存溢出和内存泄漏:在Java中如果不再使用一个对象,但是该对象依然在GC ROOT的引用链上,这个对象就不会被垃圾回收器回收,这种情况就称之为内存泄漏。内存泄漏绝大多数情况都是由堆内存泄漏引起的。少量的内存泄漏可以容忍&#x…

mysql:查看尝试连接mysql服务器的次数(包含成功和失败的尝试)

运行命令show global status like Connections;查看尝试连接mysql服务器的次数(包含成功和失败的尝试)。 例如:

TongRDS2.2 Center 哨兵配置

本TongRDS配置由中心节点管理 2 个服务节点,这 2 个服务节点工作在主备模式,并 由 Center 中心节点提供哨兵功能。 1.1 样例环境 本次测试采用 2 台主机,分别为服务器 1(192.168.0.86)和服务器 2(192.168…

华为云Stack 8.X 流量模型分析(二)

二、流量模型分析相关知识 1.vNIC ​ 虚拟网络接口卡(vNIC)是基于主机物理 NIC 的虚拟网络接口。每个主机可以有多个 NIC,每个 NIC 可以是多个 vNIC 的基础。 ​ 将 vNIC 附加到虚拟机时,Red Hat Virtualization Manager 会在虚拟机之间创建多个关联的…