0

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

**Table: EligibleServices**   

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

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

**Table: ClientInfo**

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

ServiceLocation
---------------
4

1 回答 1

1

你可以update用 a 做一个join

update clientinfo ci join
       eligibleservices es
       on ci.ChartNumber = es.ChartNumber
    set ci.ServiceLocation = es.ServiceLocation;
于 2013-09-03T01:24:54.797 回答