欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

如何使用MySQL一个表中的字段更新另一个表中字段

程序员文章站 2022-05-18 15:14:58
1,修改1列 update student s, city c set s.city_name = c.name where s.city_code = c....

1,修改1列

update student s, city c
set s.city_name = c.name
where s.city_code = c.code;

2,修改多个列

update a, b
set a.title=b.title, a.name=b.name
where a.id=b.id

•子查询

update student s set city_name = (select name from city where code = s.city_code);

oracle查询报这个错误:single-row subquery returns more than one row怎么解决?

数据库按照你的条件查询有多个重复的数据。

例如:

update "sys_role" a
set a ."dept_id" = (
  select
    c."id"
  from
    "his_department_info" c
  where
    c."dept_name" = a ."role_name"

如果以上sql语句报single-row subquery returns more than one row的错误,说明 c表”dept_name” 和a 表.”role_name” 的这两个字段 数据重复

总结

以上所述是小编给大家介绍的如何使用mysql一个表中的字段更新另一个表中字段,希望对大家有所帮助