Access MS Access front end, MySQL 5.0 DB

Joined
Sep 10, 2006
Messages
2
Reaction score
0
Hello experts,
I have an sql update statement where I update the stock by summing up the available stock in the warehouse, the query looks like the following:
UPDATE managed_material_x
SET managed_material_x.[Rack Quant] = (SELECT stock_rack_x_quant.[Rack Stock] FROM stock_rack_x_quant WHERE managed_material_x.Material=stock_rack_x_quant.Material);
I am runninng this query from MS Access 2003 to update the tables on MySQL server 5.0, but it always give me the error "Operation must be an updeatable query." error.
Thanks in advance

By the way, I am running everything on Windows XP box.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top