码迷,mamicode.com
首页 > 其他好文 > 详细

A表字段更新为B表的字段值

时间:2016-07-20 11:46:37      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:

A表字段更新为B表的字段值

 
T1表 结构
id      name       school
1       ming1      清华大学
2       ming2       北京大学
3       ming3       复旦大学
 
T2表  结构
id      student    school
11     ming1      牛津大学
12     ming3       剑桥大学
 
T1表的name 和 T2表的 student  值是 1对1 的对应。
需求:这两个字段的值相同时,根据B表的school更新A表的school。
语句:
update t1  set school = (select school from t2 where name=student) where  exists (select * from t2 as b where name = b.student);
结果:
 
T1表 结构
id      name       school
1       ming1      牛津大学
2       ming2       北京大学
3       ming3       剑桥大学
 
方法二:
update a set(a.province,a.city)=(select province,city from b where b.mobile=a.mobile) 
 注:用a.city=null不行的

A表字段更新为B表的字段值

标签:

原文地址:http://www.cnblogs.com/zzzzbk/p/5687700.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!