coolstrike23
Technical User
Hi All
I need to use this query as a subquery
select sum("A"."QUANTITY" * "B"."Qty") as Qty
from A Inner Join B on "B"."ITEMNO" = "A"."ITEMNO" and "A"."BOMNO"="B"."BOMNO" and "A"."STATUS" = 1 group by "B"."Component"
with the complete query returning
"C"."ITEMNO" Qty
with "C"."ITEMNO" = "B"."Component"
Appreciate any help with this. Thanks in advance
I need to use this query as a subquery
select sum("A"."QUANTITY" * "B"."Qty") as Qty
from A Inner Join B on "B"."ITEMNO" = "A"."ITEMNO" and "A"."BOMNO"="B"."BOMNO" and "A"."STATUS" = 1 group by "B"."Component"
with the complete query returning
"C"."ITEMNO" Qty
with "C"."ITEMNO" = "B"."Component"
Appreciate any help with this. Thanks in advance