R
Richard
Hello All
I want to produce a query showing TWO records of each unique entry in
a particular field.
I used the Group By function to give me one record from each unique
entry in a field but now need to create a sample database/query
showing 2 of each entry.
Can anyone tell me how to do this please?
My original query is:
SELECT First(Customers.ID) AS FirstOfID, Customers.OfferType
FROM Customers
GROUP BY Customers.OfferType;
many thanks
Richard
I want to produce a query showing TWO records of each unique entry in
a particular field.
I used the Group By function to give me one record from each unique
entry in a field but now need to create a sample database/query
showing 2 of each entry.
Can anyone tell me how to do this please?
My original query is:
SELECT First(Customers.ID) AS FirstOfID, Customers.OfferType
FROM Customers
GROUP BY Customers.OfferType;
many thanks
Richard