hunterfan48
Registered User.
- Local time
- Today, 15:02
- Joined
- Aug 17, 2008
- Messages
- 436
Code:
SELECT tblInventory.ID, buy.[Transaction ID], sell.[Transaction ID]
FROM ((tblInventory INNER JOIN tblTransactionID ON tblInventory.ID = tblTransactionID.[Card ID]) INNER JOIN buy ON tblTransactionID.ID = buy.[Transaction ID]) INNER JOIN sell ON tblTransactionID.ID = sell.[Transaction ID];
That above folks is what I'm working with right now on a query. I would like this query to return ALL VALUES FROM "tblInventory.ID"
Can someone please help me with this language and show me where in here I can tell it to return all values for "tblIventory.ID" and keep everything else the same??
Thank you!