NB: I think I changed some of your field names while I was creating the tables - so be aware of that while you're looking over my work.
I did a quick mock up of your two tables & here's what I got:
My SQL.
Code:
SELECT Ticket.ID, Ticket.Plant, Ticket.MeterTicket, Ticket.TicketDate, Ticket.UnitNumber, Ticket.Product, Ticket.Quantity, Price.Price, [Quantity]*[Price] AS Total
FROM Ticket INNER JOIN Price ON Ticket.ID = Price.ID
ORDER BY Ticket.ID;
See screenshot for my Query Design & the Query Results.
I hope this helps.