1 update stq_file set stq21='一级' where 1=1 and stqacti='N' and stq09 <=-5 -- 2 3 update stq_file set stq21='二级' where 1=1 and stqacti='N' and stq09 >-5
这个表是订单表,此表每天都会有新订单,只要有我就需要更新这个。该怎么写呢
你都说了写触发器,那就直接写就好了。
另,个人建议,如果不需要及时数据,还是用定时JOB比较好。
建议用作业自动执行
http://jingyan.baidu.com/article/e9fb46e19a0b0c7520f76679.html
定时只能是job, 触发器实现不了。
建议用job
使用job,设置调度,定时执行