I was trying to update one table from another table and the query set all of the fields,customers.entry_company_tax_id, to "NULL" which did not make sense to me.
here is the query, can someone tell me what I did wrong ?
UPDATE customers
SET customers.entry_company_tax_id = (
SELECT prospects.account
FROM prospects
WHERE prospects.prospect = customers.entry_company_tax_id
);