Hi! I'm new to SQL Server, though I've been using Microsoft Access for years.
I'm trying to update a table based on the value of another table. In Access I can create a join between the two tables and update the value but without a problem, but this doesn't seem to work with SQL Server.
When I try to do this in a text Stored Procedure I get a join error and when I use the query builder from Access' frontend for SQL Server it tells me "An Update query affects only a single table. Select the table to update", thereby removing the other table that I'm not updating.
So, the bottom line; how can I update a table based on the content of another table? Thanks! -- Mike
I'm trying to update a table based on the value of another table. In Access I can create a join between the two tables and update the value but without a problem, but this doesn't seem to work with SQL Server.
When I try to do this in a text Stored Procedure I get a join error and when I use the query builder from Access' frontend for SQL Server it tells me "An Update query affects only a single table. Select the table to update", thereby removing the other table that I'm not updating.
So, the bottom line; how can I update a table based on the content of another table? Thanks! -- Mike