原文:03. 行列转换写法小结行列转换,通常有2种方法,一是CASE WHEN/UNION;一是PIVOT/UNPIVOT。对于行值或列数不固定的情况,需要用动态SQL。一. 行转列--drop table RowToColcreate table RowToCol(ID int,Code varc...
分类:
其他好文 时间:
2014-06-25 23:47:41
阅读次数:
308
DATA:gv_1TYPEc.DATA:gv_2TYPEi.gv_2=60.IFgv_2>=0ANDgv_2=60ANDgv_2=70ANDgv_2=80ANDgv_2=90ANDgv_2<=100.gv_1='E'.else.gv_1='F'.ENDIF.CASEgv_1.WHEN'A'.*MES...
分类:
其他好文 时间:
2014-06-25 21:53:04
阅读次数:
1789
Bonding is aggregation multiple links to single link in order to increase throughput and achieve redundancy in case one of links fails. At least, offi...
分类:
其他好文 时间:
2014-06-24 10:28:42
阅读次数:
211
You are climbing a stair case. It takesnsteps to reach to the top.Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb...
分类:
其他好文 时间:
2014-06-24 10:22:48
阅读次数:
214
最近看了异步框架的文章,
这个有个bad case, 我不知道采用什么方案解决.
钱有100,两口子之前有约定要剩下90. 老公看到有100,花10元,花完以后因为事件异步,数据不一致,此时老婆刷新页面也看到100,再花10元. 最终所有异步事件都处理完之后最终是80元. 不符合用户的预期.
这个问题如何解决?...
分类:
其他好文 时间:
2014-06-22 19:01:04
阅读次数:
209
leetcode:Given a stringsconsists of upper/lower-case alphabets and empty space characters' ', return the length of last word in the string.If the last...
分类:
其他好文 时间:
2014-06-22 13:41:07
阅读次数:
154
altertriggerUserInfo_update--触发器(每次修改则触发)
onUserInfoforupdate
as
declare@aint
set@a=(selectUserJifenfrominserted)
updateUserInfosetUserTouXian=
case
when@a<100then‘贫民Θ1.gif‘
when@a<100and@a<500then‘平民Θ2.gif‘
when@a>499and@a<..
分类:
其他好文 时间:
2014-06-22 10:19:39
阅读次数:
214
One of the most important use-case in any cloud is provisioning a VM . In this article we shall do a walk through about an instance(VM) being provisio...
分类:
其他好文 时间:
2014-06-21 16:59:43
阅读次数:
376
WHAT?在写程序的时候我们会遇到很多种根据得出的数值就行不同处理的conditional statements,我们可以选用switch写法,以免使用太多的nested if会让程序difficult to read.syntax:switch(value){ case value1: ...;....
分类:
编程语言 时间:
2014-06-21 09:30:28
阅读次数:
252
未用SQL CTE and case when:ALTER PROCEDURE [dbo].[usp_rptDropboxBatchSummary1] @DataSource varchar(10)='ALL', @BatchNum varchar(8)='ALL'...
分类:
其他好文 时间:
2014-06-20 14:09:23
阅读次数:
284