sql server

create table #BOM
(
ID int not null primary key,
PARENT VARCHAR(10),
TYPE1 VARCHAR(10),
SON VARCHAR(10),
TYPE2 VARCHAR(10),
QTY INT
)

insert into #BOM
values
(1,'FG1','FG','SEMI1','M',3),
(2,'FG2','FG','SEMI2','M',2),
(3,'FG1','FG','RAW1','P',2),
(4,'FG1','FG','RAW2','P',5),
(5,'FG2','FG','RAW3','P',6),
(6,'SEMI1','M','RAW3','P',2),
(7,'SEMI2','M','RAW4','P',3)


with cte(parent,type1,son,type2,qty,level) as
(
select parent,type1,son,type2,qty,1 as level from #bom
union all
select h.parent,h.type1,c.son,c.type2,h.qty*c.qty as qty,c.level+1 as level from #bom h
inner join cte c on h.son=c.parent
)
select * from cte where type1='FG'order by parent

上一篇:【Leetcode】1603. Design Parking System


下一篇:在LINUX中 用Ctrl+z挂起的命令怎么切回到原任务的命令窗口