This is probably a simple question for who is the sql database administrator, but I am a guy from C # who just flounders in databases long enough to get them to work when necessary.
I have a new database that I developed that contains only a little data.
I need a query that will be used to generate my view, but I can never figure out how / when to use INNER verses in a LEFT join.
A Packet can have several Request records (one person requests 5 different parts), and each Request record can have different Action records (on hold, cancellation, special order, completion, etc.).

I would like to create a query that creates the following data table:
SELECT P.EmpID AS Requestor, P.DateStamp AS Submitted, T.Description AS RequestType, L.Description AS Line, R.PartNo, R.Workorder, R.Qty, RT.Description AS ReasonType, S.Description AS Status, A.EmpID AS Stator, A.DateStamp AS Stated, R.MTF FROM Packet AS P LEFT OUTER JOIN Request AS R ON (R.PacketID=P.ID) LEFT OUTER JOIN Action AS A ON (A.RequestID=R.ID) LEFT OUTER JOIN RequestType AS T ON (R.RequestTypeID=T.ID) LEFT OUTER JOIN Line AS L ON (R.LineID=L.ID) LEFT OUTER JOIN ReasonType AS RT ON (R.ReasonTypeID=RT.ID) LEFT OUTER JOIN Status AS S ON (A.StatusID=S.ID)
This returns 5 rows, but there are several NULL entries for Status , Stator and Stated .
So, I tried to write this using INNER JOIN:
SELECT P.EmpID AS Requestor, P.DateStamp AS Submitted, T.Description AS RequestType, L.Description AS Line, R.PartNo, R.Workorder, R.Qty, RT.Description AS ReasonType, S.Description AS Status, A.EmpID AS Stator, A.DateStamp AS Stated, R.MTF FROM Packet AS P INNER JOIN Request AS R ON (R.PacketID=P.ID) INNER JOIN Action AS A ON (A.RequestID=R.ID) INNER JOIN RequestType AS T ON (R.RequestTypeID=T.ID) INNER JOIN Line AS L ON (R.LineID=L.ID) INNER JOIN ReasonType AS RT ON (R.ReasonTypeID=RT.ID) INNER JOIN Status AS S ON (A.StatusID=S.ID)
NULL entries have now disappeared, but now I have only three lines.
How do I know which version should I use? ... or if I use a combination of LEFT and INNER connections?