有三种方法:
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更新技巧,包括更新单一列、多个列以及通过子查询更新数据的方法。这些技巧可以帮助开发者更高效地进行数据更新操作。
493

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



