Viewing 2 posts - 1 through 3 (of 3 total)
There are two things that need to be done here (and possibly 3). First, you will need to run a query to update totals in table 2 for values that...
April 2, 2008 at 6:43 am
#797158
It's pretty simple to update a value in one table with data from another.
Here's the example from SQL Books online:
USE pubs
GO
UPDATE titles
SET t.ytd_sales = t.ytd_sales + s.qty
FROM titles t, sales...
April 1, 2008 at 5:11 pm
#796942