So I've written a different query...
update indirect_customer b
set (b.name, b.address1, b.address2, b.city, b.state, b.zipcode) =
(select a.name, a.address1, a.address2, a.city, a.state, a.zip
from unknown_names a where a.dea = b.industry_id)
It updates the values from second table to the...