Hi all,
I'm new to Access but competent in SQL queries. I need to get this query working in Access but am failing miserably - can anyone help!?
In SQL:
UPDATE Orders
SET Delivered =
(
SELECT
SUM(Deliveries.Quantity)
FROM
Deliveries
WHERE
Orders.OrderID = Deliveries.OrderID
AND ShipDate < GetDate()
)
Copying and pasting into access gives the error "Operation must use an updateable query"
Help!! Thanks.
Jason
I'm new to Access but competent in SQL queries. I need to get this query working in Access but am failing miserably - can anyone help!?
In SQL:
UPDATE Orders
SET Delivered =
(
SELECT
SUM(Deliveries.Quantity)
FROM
Deliveries
WHERE
Orders.OrderID = Deliveries.OrderID
AND ShipDate < GetDate()
)
Copying and pasting into access gives the error "Operation must use an updateable query"
Help!! Thanks.
Jason