To be fully updatable, a query must meet several requirements:
SELECT Products.ProductID, Products.ProductName, Categories.CategoryID, Categories.CategoryName FROM Categories, Products WHERE Products.CategoryID = Categories.CategoryID;
SELECT Orders.* FROM Orders WHERE Orders.Freight > (SELECT Avg(Orders.Freight) AS AvgOfFreight FROM Orders;);
In this case, fields from the Orders table are updatable.