TruthInSatire
Programmer
Access produced the following query. It works but does not return what I need.
it returns zero records because the thrid table is empty (coiValues). I need it to display all the records from the first and second tables (coi, coiFields) reguardless.
here is the current query:
thanks in advance
Human beings, who are almost unique in having the ability to learn from the experience of others, are also remarkable for their apparent disinclination to do so.
-Douglas Adams (1952-2001)
it returns zero records because the thrid table is empty (coiValues). I need it to display all the records from the first and second tables (coi, coiFields) reguardless.
here is the current query:
Code:
SELECT coi.coiName, coi.coiID, coiFields.fieldID, coiFields.fieldName, coiFields.priority, coiValues.valueID, coiValues.fieldValue, coiValues.coiNumber
FROM (coi INNER JOIN coiFields ON coi.coiID = coiFields.coiID) INNER JOIN coiValues ON (coi.coiID = coiValues.coiID) AND (coiFields.fieldID = coiValues.fieldID)
thanks in advance
Human beings, who are almost unique in having the ability to learn from the experience of others, are also remarkable for their apparent disinclination to do so.
-Douglas Adams (1952-2001)