I have a QUOTES table and an ITEMS table
There are multiple rows in the ITEMS table for each quote linked by the QuoteDBID field.
Can I write a query that will return one row for each QUOTE with a column containing only the first value for that quote.
I have this, but it returns a row for each ITEM
There are multiple rows in the ITEMS table for each quote linked by the QuoteDBID field.
Can I write a query that will return one row for each QUOTE with a column containing only the first value for that quote.
I have this, but it returns a row for each ITEM
Code:
SELECT Quotes.QuoteDBID, Quotes.[Quote Num], Items.[Items ID], Items.Description
FROM Quotes INNER JOIN Items ON Quotes.QuoteDBID = Items.QuoteDBID
ORDER BY Quotes.[Quote Num];