General discussion
January 8, 2004 at 04:30 AM
ka75

Microsoft Access – updating query data

by ka75 . Updated 22 years, 8 months ago

When writing an sql query referring to one table, I have the ability to update data inside the table created by the query, for instance:
SELECT * FROM products;

When the query involves more than one table updateing data in the table created is not possible. for instance:

SELECT BI.bidNum, CO.ColorName
FROM Bids AS BI, Colors AS CO
WHERE BI.Color=CO.colornum;

Is there an possibility of writing such a query and still have the option of updating data in the table created ?

This discussion is locked

All Comments