zoukankan      html  css  js  c++  java
  • SQL statement for Unit conversion

    use Dynamics
    go
    
    --海关单位转库存单位
    
    ------------------------------------------
    --创建表及其相关字段
    drop table Jimmy_UnitConversionTest
    go
    CREATE TABLE Jimmy_UnitConversionTest
    (
    ItemId			varchar(41)		default('') not null,
    InventQty		decimal(24,4)	default(0)  not null,
    InventUnitid	varchar(10)		default('') not null,
    CSMQty			decimal(24,4)	default(0)  not null,
    CSMUnitId		varchar(10)		default('') not null,
    factor			decimal(24,12)  default(0)  not null
    )
    
    insert into Jimmy_UnitConversionTest(ItemId,InventQty)
    values('Col-1100',10)
    
    update a set InventUnitid = b.unitid  
    from Jimmy_UnitConversionTest a join InventTableModule b on a.itemid = b.itemid
    where b.moduletype = 0
    GO
    
    select * from Jimmy_UnitConversionTest where InventUnitid = '' 
    
    
    update a set a.factor = 1 
    from Jimmy_UnitConversionTest a
    where a.CSMUnitId = a.InventUnitid and factor = 0 
    GO
    
    select * from Jimmy_UnitConversionTest where factor = 0
    GO
    
    -- 更新与库存单位的换算
    update a set a.factor = b.factor 
    from Jimmy_UnitConversionTest a 
    join unitconvert b on a.itemid = b.itemid and a.CsmUnitId = b.fromunit and a.Inventunitid = b.tounit and a.factor = 0
    GO
    
    -- 反向更新
    update a set a.factor = 1 / b.factor 
    from Jimmy_UnitConversionTest a 
    join unitconvert b on a.itemid = b.itemid and a.CSMUnitId = b.tounit and a.Inventunitid = b.fromunit and a.factor = 0
    GO
    
    -- 系统不存在的换算率:           
    select * from Jimmy_UnitConversionTest where factor = 0
    go
    
    
    -- 找不到的直接用1做换算率
    
    update a set a.InventQty = case 
    		 when factor <> 0 then (1 / factor) * CSMQty
    		 when factor = 0  then (1 / 1) * CSMQty end
    from Jimmy_UnitConversionTest a
    GO
    
  • 相关阅读:
    [C语言]变长函数参数和变长参数宏
    [转载]腾讯机智团队分享--AllReduce算法的前世今生
    (三)opencv_py之阈值处理
    (二)opencv_py之彩色空间转换
    neo4j 一些常用的CQL
    Neo4j (1)创建节点
    tensorflow实现siamese网络 (附代码)
    早停!? earlystopping for keras
    关于 ESIM 网络的 资料 集合
    聊天机器人资源合集:项目,语聊,论文,教程
  • 原文地址:https://www.cnblogs.com/Fandyx/p/1905101.html
Copyright © 2011-2022 走看看