hello all,
I'm trying to update a StateName field in table 1 using value in abbrStateName from table 2 where that StateName field match with the fullStateName field in the table 2... Here is my code:
I got an error saying: Operation must use updateable query
Can someone tell me where did I'd gone wrong with the query on the above? Thanks!
I'm trying to update a StateName field in table 1 using value in abbrStateName from table 2 where that StateName field match with the fullStateName field in the table 2... Here is my code:
Code:
UPDATE Carthead SET Carthead.locState = (SELECT Locations.locState FROM Locations WHERE Locations.locName = Carthead.locState)
I got an error saying: Operation must use updateable query
Can someone tell me where did I'd gone wrong with the query on the above? Thanks!