I want to return ALL RECORDS from the MillInvoice table regardless if there is a corresponding record in the PriceIncrease Table. When I run the query below I am getting just those records in the MillInvoice table that have a corresponding PriceIncrease record.
SELECT MILLInvoices.*,
       PriceIncrease.PriceIncreaseId,
       PriceIncrease.PriceForecasted,
       PriceIncrease.DateForecasted 
FROM MILLInvoices MILLInvoices
     LEFT OUTER JOIN PriceIncrease PriceIncrease
         ON MILLInvoices.MillCode = PriceIncrease.Plant
            AND MILLInvoices.ParentNumber = PriceIncrease.Mapa8
            AND MILLInvoices.Segment = PriceIncrease.GradeSegment
            AND MILLInvoices.City = PriceIncrease.City
            AND MILLInvoices.State = PriceIncrease.State
            AND MILLInvoices.Zip = PriceIncrease.ZipCode
 
    