S
Stephen Martinelli
Hello... Im cross posting this ...sorry but I'm stuck...
Im trying to update a access table called xUpdate with another table called
temp. Both table live in the same database. I want to update the field
xUpdate.status with a field in temp called temp.newStatus. I thought the
following would work
Update xUpdate set Status = newStatus " & _
"from xUpdate x inner join temp t" & _
"on x.lot = t prefix and x.numb =t.suffix"
It just doesnt work. Im using VB.net to call the sql statement. All the
connections stuff is ok...any ideas?
thank you in advance
Im trying to update a access table called xUpdate with another table called
temp. Both table live in the same database. I want to update the field
xUpdate.status with a field in temp called temp.newStatus. I thought the
following would work
Update xUpdate set Status = newStatus " & _
"from xUpdate x inner join temp t" & _
"on x.lot = t prefix and x.numb =t.suffix"
It just doesnt work. Im using VB.net to call the sql statement. All the
connections stuff is ok...any ideas?
thank you in advance