J
JohnLute
I have a combo box that queries supplier names and their ID's. Here's the row
source:
SELECT tblSupplierNames.txtSupplierName, tblSupplierIDs.txtSupplierID FROM
tblSupplierNames INNER JOIN tblSupplierIDs ON
tblSupplierNames.txtSupplierName = tblSupplierIDs.txtSupplierName GROUP BY
tblSupplierNames.txtSupplierName, tblSupplierIDs.txtSupplierID ORDER BY
tblSupplierNames.txtSupplierName, tblSupplierIDs.txtSupplierID;
Some suppliers do NOT have an ID. What operator(s) do I use for the above so
that the combo box queries all supplier names regardless if they have an ID
or not?
THANKS A BUNCH!
source:
SELECT tblSupplierNames.txtSupplierName, tblSupplierIDs.txtSupplierID FROM
tblSupplierNames INNER JOIN tblSupplierIDs ON
tblSupplierNames.txtSupplierName = tblSupplierIDs.txtSupplierName GROUP BY
tblSupplierNames.txtSupplierName, tblSupplierIDs.txtSupplierID ORDER BY
tblSupplierNames.txtSupplierName, tblSupplierIDs.txtSupplierID;
Some suppliers do NOT have an ID. What operator(s) do I use for the above so
that the combo box queries all supplier names regardless if they have an ID
or not?
THANKS A BUNCH!