A
Alex
This query comes up with emty Territory_ID and Description
columns.
SELECT qrySales.Product_ID, qrySales.Distributor_ID,
qryTerritory.Territory_ID, qryTerritory.Description
FROM qrySales LEFT JOIN qryTerritory ON
qrySales.Distributor_ID = qryTerritory.Distributor_ID;
Separately, the queries are working. I even added them to
relationship scheme creating one to many relationships
there. Anyway, these columns are empty.
Can anybody clarify what's wrong with this query.
Thanks in advance.
columns.
SELECT qrySales.Product_ID, qrySales.Distributor_ID,
qryTerritory.Territory_ID, qryTerritory.Description
FROM qrySales LEFT JOIN qryTerritory ON
qrySales.Distributor_ID = qryTerritory.Distributor_ID;
Separately, the queries are working. I even added them to
relationship scheme creating one to many relationships
there. Anyway, these columns are empty.
Can anybody clarify what's wrong with this query.
Thanks in advance.