1.两表更新(用一个表更新另一个表)
UPDATE t_i_borrower a, t_supplier s SET a.type = s.type WHERE a.cust_id = s.cust_id;