W
Warrio
Hello!
How is it possible to update a field with the value obtained from another
table (using only SQL coding without VBA)?
I've tried already 2 ways, both are not allowed by Access:
-1st way:-------------------------------------------
Update Table1 SET Field1 = (Select Field2 From)
-2nd way:------------------------------------------
Update Table1, (Select Field2 From) AS myTable2 SET Field1 =
myTable2.Field2
---------------------------------------------------
both of these queries get the same error:
-> Operation must use an updateable query
Thanks for any suggestion
How is it possible to update a field with the value obtained from another
table (using only SQL coding without VBA)?
I've tried already 2 ways, both are not allowed by Access:
-1st way:-------------------------------------------
Update Table1 SET Field1 = (Select Field2 From)
-2nd way:------------------------------------------
Update Table1, (Select Field2 From) AS myTable2 SET Field1 =
myTable2.Field2
---------------------------------------------------
both of these queries get the same error:
-> Operation must use an updateable query
Thanks for any suggestion