B
BLTibbs
Help!!
Here is the query from he SQL pane that pulls up just the lowest priced of
each competitor. How do I update another row from this "lowest priced"
record called [condition] into a table called "BookTbl" when the two can be
matched to a field called [ISBN]?
What am I missing here?
SELECT TempCompetitorTbl.ISBN, Min(TempCompetitorTbl.SellerPrice) AS
MinOfSellerPrice, Count(TempCompetitorTbl.KeyID) AS CountOfKeyID
FROM TempCompetitorTbl
GROUP BY TempCompetitorTbl.ISBN, TempCompetitorTbl.SellerCondition
HAVING (((TempCompetitorTbl.SellerCondition) Like "used"));
Here is the query from he SQL pane that pulls up just the lowest priced of
each competitor. How do I update another row from this "lowest priced"
record called [condition] into a table called "BookTbl" when the two can be
matched to a field called [ISBN]?
What am I missing here?
SELECT TempCompetitorTbl.ISBN, Min(TempCompetitorTbl.SellerPrice) AS
MinOfSellerPrice, Count(TempCompetitorTbl.KeyID) AS CountOfKeyID
FROM TempCompetitorTbl
GROUP BY TempCompetitorTbl.ISBN, TempCompetitorTbl.SellerCondition
HAVING (((TempCompetitorTbl.SellerCondition) Like "used"));