Mysql

我將如何合併與不同列匹配的列?

  • June 2, 2015

它與下面的文章非常相似

如何根據匹配合併mysql中的列

表使用者

在此處輸入圖像描述

我想將 customer_id 從表使用者合併到表 cust,其中 customers_firstname 和 customers_name 匹配

餐桌定制

在此處輸入圖像描述

如果要更新 cust 表,則需要應用 update with join

update cust c 
join user u on u.customers_firstname = c.customers_firstname
and u.customers_lastname = c.customers_lastname
set c.customers_id = u.customers_id

引用自:https://dba.stackexchange.com/questions/101486