一个sql的问题:假设有 表 a,b,c ; d为 a,b 表中 相同名称的一个字段 ; e为目标值
2个回答
展开全部
今儿百度发SQL语言提交不了!我给你留言了!
update
(
select * from (select * from a left jion b on a.d=b.d) b
union all
select * from c
) t
set t.d=修改内容 where t.(原来在C的某个字段)满足条件
更正一下
update a set a.d=e where a.id(主键) in
(
select t.id from
(
select * from (select * from a left jion b on a.d=b.d) b
union all
select * from c
) t where t.(原来在C的某个字段)满足条件
)
修改b表d字段的方法相同
update
(
select * from (select * from a left jion b on a.d=b.d) b
union all
select * from c
) t
set t.d=修改内容 where t.(原来在C的某个字段)满足条件
更正一下
update a set a.d=e where a.id(主键) in
(
select t.id from
(
select * from (select * from a left jion b on a.d=b.d) b
union all
select * from c
) t where t.(原来在C的某个字段)满足条件
)
修改b表d字段的方法相同
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询