Here I am using the same document in left join as well:
select A.a,A.b,C.c
from Inventory A left join
(select B.a as id,B.a*100 as c
from Inventory B
where condition1 and condition2
) as C
on C.id
on A.a
How could I achieve this without a left join in the above use-case?