Hi all,
I have a very simple update query as below, it works fine in Access:
update a, (select c.refno, c.price, c.unit from c) as b
set a.price=b.price, a.unit=b.unit
where a.refno=b.refno
Right now, I need to sum the price and unit first before updating Table a. I just simply re-write...