G
Guest
I am trying to update a table based on the join of two other tables. In SQL
Server this syntax works:
UPDATE titles
SET ytd_sales = t.ytd_sales + s.qty
FROM titles t, sales s
WHERE t.title_id = s.title_id
what the equivalent in Access?
Thanks for help in advance,
WayneM
Server this syntax works:
UPDATE titles
SET ytd_sales = t.ytd_sales + s.qty
FROM titles t, sales s
WHERE t.title_id = s.title_id
what the equivalent in Access?
Thanks for help in advance,
WayneM