---一下sql可以添加到作业中每秒执行一次   数据过多会消耗性能   

 

--数据表如下,其中字段pid mid time price_type是一个组合主键
--pid mid time price price_type uid
insert into 增量更新2( pid, mid, times, price, price_type, uid )
select pid, mid, times, price, price_type, uid
from 增量更新1 t2
where not exists( select 1 from 增量更新2 where pid = t2.pid
and mid = t2.mid and times = t2.times and price_type = t2.price_type )

 

 

 

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-10-30
  • 2022-12-23
  • 2021-08-23
  • 2022-12-23
猜你喜欢
  • 2021-05-24
  • 2022-01-03
  • 2022-12-23
  • 2022-12-23
  • 2021-05-24
  • 2021-11-19
相关资源
相似解决方案