Hello,
I'm trying to update a table with this query but doesn't seem to work at all
The query seems to run for a second and done, but I found no record has been changed. My guess is that it didn't find any match. Please help.
I'm trying to update a table with this query but doesn't seem to work at all
Code:
update tblCustomerThreads
SET UserID = tblContacts.idSalePerson, idCustomer = tblContacts.idCustomer
from tblCustomerThreads, tblContacts
WHERE tblCustomerThreads.idGoldMine LIKE %tblContacts.idGoldMine%
The query seems to run for a second and done, but I found no record has been changed. My guess is that it didn't find any match. Please help.