Forum Replies Created

Viewing 2 posts - 1 through 3 (of 3 total)

  • RE: Adding in one table, result in another?

    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...

  • RE: Adding in one table, result in another?

    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...

Viewing 2 posts - 1 through 3 (of 3 total)