表结构如下:
结构序号 物品编号 物品类型 物品名称 父件编号 物品用量
1 001 产品 A NULL NULL
2 002 产品 B NULL NULL
3 003 零部件 C 001 3
4 004 零部件 D 001 2
5 005 原材料 E 003 4
6 006 原材料 F 003 3
7 007 原材料 G 004 5
8 003 零部件 C 002 4
9 009 零部件 H 002 3
10 005 原材料 E 009 1
11 006 原材料 F 009 1
请问:如何SQL查询父编号之下的物品总用量
例如:按001查时需查到
003 C 3个
004 D 2个
005 E 4*3个
006 F 3*3个
007 G 5*2个
按003查询时需查到
005 E 4个
006 F 3个
------解决方案--------------------
- SQL code
--bom成本计算?表一:品号信息档 品号 品号属性 材料成本 人工成本 本阶人工 MB001 MB025 MB057 MB058 MB061 A M 2 B M 1 C P 2 D P 3 (MB025=M 时只有本阶人工是基础数据,其他的是计算过来的,MB025=P时只有MB057有基础数据) 表二(BOM) 主件品号 元件品号 用量 A B 2(A由2个B组成) B C 1 (B由1个C和3个D组成) B D 3 计算原理: 1、计算MB025=M 的人工成本,人工成本=本阶人工+下阶人工成本 2、计算材料成本,材料成本=本阶用到材料+下阶材料之和(如本例 结果: MB001 MB025 MB057 MB058 MB061 A M 22 4 2 B M 11 1 1 C P 2 0 0 D P 3 0 0 11=(3D+1C)=11 22=11*2 4=2B+2 gocreate table BOM(主件品号 nvarchar(2),元件品号 nvarchar(2), 用量 int)insert BOM select 'A','B',2 insert BOM select 'B','C',1 insert BOM select 'B','D',3 gocreate table product(MB001 nvarchar(2), MB025 nvarchar(2), MB057 int, MB058 int, MB061 int)insert product select 'A','M',null,null, 2 insert product select 'B','M',null,null, 3-----改为3测试 insert product select 'C','P', 2 ,null,nullinsert product select 'D','P', 3 ,null,nullgogocreate function BomTree(@Product nvarchar(2))returns numeric(18,5)asbegindeclare @T table(主件品号 nvarchar(2),元件品号 nvarchar(2), 用量 int,lev int)declare @i int,@num numeric(18,5)if not exists(select 1 from BOM where [email protected]) begin select @num=sum(MB057) from product where [email protected] return @num endset @i=0insert @T select 主件品号,元件品号,用量,@i from BOM where [email protected]while @@rowcount>0begin set @[email protected]+1 insert @T select t2.主件品号,t2.元件品号,t.用量*t2.用量,@i from @t t join BOM t2 on t.元件品号=t2.主件品号 where [email protected]endselect @num=sum(t.用量*case when t2.MB057>0 then t2.MB057 else 1 end)from @t t join product t2 on t.元件品号=t2.MB001where not exists(select 1 from @t where t.元件品号=主件品号)return @numendgocreate function BomTree2(@Product nvarchar(2))returns numeric(18,5)asbegindeclare @T table(主件品号 nvarchar(2),元件品号 nvarchar(2), 用量 int,lev int)declare @i int,@num numeric(18,5)if not exists(select 1 from BOM t where [email protected] and not exists(select 1 from product where MB001=t.元件品号 and isnull(MB061,0)!>0)) begin select @num=sum(isnull(MB061,0)) from product where [email protected] return @num endset @i=0insert @T select 主件品号,元件品号,用量,@i from BOM where [email protected]while @@rowcount>0begin set @[email protected]+1 insert @T select t2.主件品号,t2.元件品号,t.用量*t2.用量,@i from @t t join BOM t2 on t.元件品号=t2.主件品号 where [email protected]endselect @num=sum(t.用量*isnull(t2.MB061,1))from @t t join product t2 on t.元件品号=t2.MB001------改一下判断where not exists(select 1 from product where MB001=t.元件品号 and isnull(MB061,0)!>0)return @numendgoselect MB001, MB025 , [MB057]=dbo.BomTree(MB001), [MB058]=isnull([MB061],0)+dbo.BomTree2(MB001), [MB061]=isnull([MB061],0)from productgo--drop table product,BOM--drop function BomTree,BomTree2MB001 MB025 MB057 MB058 MB061 ----- ----- -------------------- --------------------- ----------- A M 22.00000 8.00000 2B M 11.00000 6.00000 3C P 2.00000 .00000 0D P 3.00000 .00000 0(所影响的行数为 4 行)