要求:一条SQL语句先判断表2与表1的sale值不一致的数据,然后按照table1的值update掉table2的值。
展开全部
update table2 set sale =
(
select sale from table1
where table1.date = table2.date and table1.id = table2.id
)
where exists
(
select * from table1
where table1.date = table2.date and table1.id = table2.id
)
--效果有点出入,但是是一样的
(
select sale from table1
where table1.date = table2.date and table1.id = table2.id
)
where exists
(
select * from table1
where table1.date = table2.date and table1.id = table2.id
)
--效果有点出入,但是是一样的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询