本帖最后由 sailyang 于 2020-1-11 11:07 编辑
需求:
我们系统需要请求微信平台第三方数据,第三方收到请求后会生成相应的数据并入库,。
分析:
定时任务将第三方数据同步到本地数据库。当我们发送请求后微信公众平台会立即返回一个值,我们会根据返回值去数据库更新同步过来的表字段,sql语句执行完了,没有任何错误,在同步表中查看同步的数据都有且where条件完全符合,但是就是没有将指定字段更新掉,最后通过多方对比,发现更新在前,插入在后。
实现语句: merge tb_backlog as target using tb_logdb as source on target.backlog_id = source.log_id--目标表和源表匹配则执行update操作 when matched then update set target.backlog_param = source.log_param--目标表中没有,源表中存在则执行insert操作,将源表中存在而目标表不存在的记录插入到目标表中 when not matched then insert (backlog_id,backlog_name,backlog_url) values(source.log_id,source.log_name,source.log_url)--目标表中存在,源表不存在则执行delete操作,删除目标表中的源表不存在的记录 when not matched by source then delete; |