需要从另一个数据中更新表中的数据

时间:2013-09-02 19:30:23

标签: mysql phpmyadmin

我有两个表,需要使用EligibleServices表中的ServiceLocation信息更新ClientInfo

**Table: EligibleServices**   

ChartNumber
-----------
1
2
3    

ServiceLocation
---------------
Office1
Office2
Office3

**Table: ClientInfo**

Chartnumber
-----------
1
2
3

ServiceLocation
---------------

1 个答案:

答案 0 :(得分:1)

您可以使用update执行join

update clientinfo ci join
       eligibleservices es
       on ci.ChartNumber = es.ChartNumber
    set ci.ServiceLocation = es.ServiceLocation;