Hi there
I'm trying to update a field in one table from another table in a different db, this is what i tried and it comes back saying 500+ ropws successfull but nothign has changed. Can someone point out where I'm going wrong?
update xfer
set custid = myDB2.dbo.customers.custid
from xfer, myDB2.dbo.customers
where xfer.email = myDB2.dbo.customers.emaila
ddress
I'm trying to set the CustID in xfer to the custid in customers so long as the email address matches.
Thanks!
Start Free Trial