探究分析---利用sql批量更新部分时间的同比数据
问题:如何将social_kol_tmp表 中的字段cost_YA中日期为201901-201909中的值替换为相同brand和pltform对应18年月份的col_cost字段的数据,其他日期的cost_YA值不变?
假设:social_kol_tmp表 A,social_kol_tmp表B
难点:可以利用join on brand和pltform相等,但是日期如何匹配呢?
思路:通过对18年各月和对应19年的各个月份产生相应的字段,rn1和rn2
注意,理论上结果中同一行两个时间只相差一年

方案一:窗口函数生成rn1和rn2(结果需要看数据情况,原因如下)
1. 代码如下:
select a.brand,a.platform,a.period as Adt,b.period as Bdt,a.col_cost,b.col_cost as cost_YNew
from (select col_cost,brand,platform,period,dense_rank() over (partition by brand,platform order by period) as rn1
from social_kol_tmp
where period>='201901' and period<'201909'
) a
join
( select col_cost,brand,platform,period,dense_rank() over (partition by brand,platform order by period ) as rn2
from social_kol_tmp
where period>='201801' and period<'201809'
) b
on a.rn1=b.rn2 and a.brand=b.brand and a.platform=b.platform
2. 出现的问题:部分时间不对应
注意,理论上结果中同一行两个时间只相差一年

3 .原因分析:
某个品牌的某一平台的数据不是每个月都有,排序产生的字段rn1和rn2出了问题,未按照对应的月份排序。
方案二:case when 生成rn1和rn2(成功)
1. 代码如下:
select a.brand,a.platform,a.period as Adt,b.period as Bdt,a.col_cost,b.col_cost as cost_YNew
from (select col_cost,brand,platform,period,
case when period='201901' then '1'
when period='201902' then '2'
when period='201903' then '3'
when period='201904' then '4'
when period='201905' then '5'
else period
end as rn1
from social_kol_tmp
where period>='201901' and period<'201909'
) a
join
( select col_cost,brand,platform,period,
case when period='201801' then '1'
when period='201802' then '2'
when period='201803' then '3'
when period='201804' then '4'
when period='201805' then '5'
else period
end as rn2
from social_kol_tmp
where period>='201801' and period<'201809'
) b
on a.rn1=b.rn2 and a.brand=b.brand and a.platform=b.platform
2.结果如下:

检验:
- Adt和Bdt的日期月份是对应的
- 表中的数据Adt对应的col_cost是以1开头的,Bd对应的是以2开头的,故数据校验成功
在sql中实现数据更新的方法
参考如下(sqlsever):
1.创建一个表,sMedia.social_kol_tmp_new :201901-201909中的kol_cost替换为对应18年月份的数据
Create table sMedia.social_kol_tmp_new as
select a.brand,a.platform,a.period as Adt,b.period as Bdt,a.kol_cost,b.kol_cost as cost_YNew
from (select kol_cost,brand,platform,period,
case when period='201901' then '1'
when period='201902' then '2'
when period='201903' then '3'
when period='201904' then '4'
when period='201905' then '5'
when period='201906' then '3'
when period='201907' then '4'
when period='201908' then '5'
when period='201909' then '5'
else period
end as rn1
from Media.social_kol_tmp_new
where period>='201901' and period<'201909'
) a
join
( select kol_cost,brand,platform,period,
case when period='201801' then '1'
when period='201802' then '2'
when period='201803' then '3'
when period='201804' then '4'
when period='201805' then '5'
when period='201806' then '6'
when period='201807' then '7'
when period='201808' then '8'
when period='201809' then '9'
else period
end as rn2
from Media.social_kol_tmp_new
where period>='201801' and period<'201809'
) b
on a.rn1=b.rn2 and a.brand=b.brand and a.platform=b.platform
2.在sMedia.social_kol_tmp 更新新数据
update sMedia.social_kol_tmp
set cost_YA= cost_YNew
from sMedia.social_kol_tmp a,Media.social_kol_tmp_new b
where a.period=b.Adt
探究分析---利用sql批量更新部分时间的同比数据的更多相关文章
- SQL批量更新数据库中所有用户数据表中字段类型为tinyint为int
--SQL批量更新数据库中所有用户数据表中字段类型为tinyint为int --关键说明:--1.从系统表syscolumns中的查询所有xtype='48'的记录得到类型为[tinyint]的字段- ...
- SqlServer 利用游标批量更新数据
SqlServer 利用游标批量更新数据 Intro 游标在有时候会很有用,在更新一部分不多的数据时,可以很方便的更新数据,不需要再写一个小工具来做了,直接写 SQL 就可以了 Sample 下面来看 ...
- 利用sql批量删除表,存储过程
利用sql批量删除表,存储过程. 最近用godaddy的空间,由于系统里面的表多,一个个的删除很麻烦,就网上搜集了一下解决方法. 给大家分享一下: 1.批量删除存储过程 declare @procNa ...
- SQL批量更新数据
SQL批量更新数据 step1:导入Excel数据, 具体见百度.注意点:一列中含有float型数据和文本数据的时候,导入要将Excel中的表格属性改成文本,或在数字项目前加个单引号. step2 ...
- oracle 批量更新之将一个表的数据批量更新至另一个表
oracle 批量更新之将一个表的数据批量更新至另一个表 CreationTime--2018年7月3日17点38分 Author:Marydon Oracle 将一个表的指定字段的值更新至另一个 ...
- Oracle两张表关联批量更新其中一张表的数据
Oracle两张表关联批量更新其中一张表的数据 方法一(推荐): UPDATE 表2 SET 表2.C = (SELECT B FROM 表1 WHERE 表1.A = 表2.A) WHERE EXI ...
- sql 批量更新
利用update和select进行批量更新 UPDATE Table1 SET categoryId =(SELECT Id FROM Table2 WHERE Table1 .Id=Table2.c ...
- 利用pip批量更新python库
如果python库比较旧,需要更新到最新版本,可以利用pip工具. DOS命令行下,输入pip -V查看pip版本,可以先把pip更新到新版本. 查看系统里过期的python库 pip list #列 ...
- SQL批量更新 关系表更新
很多人在做数据的批量更新时..如果更新的内容是从其他表查出来的..很容易这么写.. UPDATE TABLE1 SET COLUMN1=(SELECT SUM(SOMETHING) FROM TABL ...
随机推荐
- 最短时间(几秒内)利用C#往SQLserver数据库一次性插入10万条数据
用途说明: 公司要求做一个数据导入程序,要求将Excel数据,大批量的导入到数据库中,尽量少的访问数据库,高性能的对数据库进行存储.于是在网上进行查找,发现了一个比较好的解决方案,就是采用SqlBul ...
- Could not resolve resource location pattern [classpath:com/****/mappers/*.xml]: class path resource [com/****/mappers/] cannot be resolved to URL because it does not exist的问题
这里建议先去看看路径的问题,看看application.xml的里面的导入的相应的配置文件的路径有没有问题,如下: 再者看看相应的注解有没有加上,service和controller等的注解 如果再不 ...
- iPad替代midi键盘
下载安装rtpMIDI (网络MIDI驱动程序) 打开rtpMIDI,在“My session”那里按下+,就会自动显示你的电脑的名字 检查Bonjour服务正常运行,iPad与pc网络正常连接 iP ...
- [C5W1] Sequence Models - Recurrent Neural Networks
第一周 循环序列模型(Recurrent Neural Networks) 为什么选择序列模型?(Why Sequence Models?) 在本课程中你将学会序列模型,它是深度学习中最令人激动的内容 ...
- jQuery中的筛选(六)
1. eq(index|-index) 获取当前链式操作中第N个jQuery对象,返回jQuery对象,当参数大于等于0时为正向选取,比如0代表第一个,1代表第二个.当参数为负数时为反向选取,比如-1 ...
- 对象锁和class锁
对象锁:就是这个锁属于这个类的对象实例,可以通过为类中的非静态方法加synchronized关键字 或者使用 synchronized(this) 代码块,为程序加对象锁. Class锁:就是这个锁属 ...
- window.location.href方式提交json数据
${ctx}/vehicleFlow/to_vehflow_detail.do?strJson="+encodeURIComponent(json)
- 错误解决:android.view.InflateException: Binary XML file line #11: Error inflating class com.tony.timepicker.TimePicker
今天在做项目开发时遇到这么一个错误,完整的错误提示信息如下: java.lang.RuntimeException: Unable to start activity ComponentInfo{co ...
- QPushButton 一组中凸显选中的一个,且只能选中一个。
QButtonGroup * buttonGroup = new QButtonGroup(this); buttonGroup->setExclusive(true); ui->push ...
- 解惑:如何使得寝室的电脑和实验室的电脑远程相互访问(Linux和Windows)
解惑:如何使得寝室的电脑和实验室的电脑远程相互访问 一.前言 自从接触计算机网络之后就一直想着把实验室的电脑和自己寝室的电脑远程连接起来,结果总是郁郁不能成功,网上这样的教材也少的可怜,于是总是搁置下 ...