the key is in your joins... you need right joins in order to show everything from Table3 and any related info from the other tables
SELECT Table3.ID, Table3.Date, Table3.Amount, Table1.Owner_LastName, Table2.Tenant_LastName
FROM Table1 RIGHT JOIN (Table2 RIGHT JOIN Table3 ON Table2.TenantID=...