Project

You might also like

You are on page 1of 1

Select PCH.id as Purchase Code, I.name as ingredient, I.

price as Price,
PCH.quantity,
S.name as Supplier, E.name as Purchasing Agent, PCH.Purchase Date From T_Purchases
PCH

inner join T_ingredients I on PCH.id_ingredient = I.id_ingredient


inner join T_suppliers S on PCH.id_supplier = S.id_supplier
inner join T_employees E on PCH.id_employee = E.id_employee

go

You might also like