http://www.cnblogs.com/emanlee/p/4231976.html
Solution 1: 修改1列
update student s, city c
set s.city_name = c.name
where s.city_code = c.code;
Solution 2: 修改多个列 (亲测可用)
update a, b
set a.title=b.title, a.name=b.name
where a.id=b.id
Solution 3: 采用子查询
update student s set city_name = (select name from city where code = s.city_code);
本文介绍了三种使用SQL进行数据更新的方法:1. 修改单列数据;2. 同时更新多列数据;3. 利用子查询进行更新。这些技巧对于进行数据库维护和数据同步非常实用。

8238

被折叠的 条评论
为什么被折叠?



