`
jimmy9495
  • 浏览: 303885 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
文章分类
社区版块
存档分类
最新评论

信息更新时间数据订正.sql

 
阅读更多

--产仔
declare 
cursor r is
select p.animal_id as animal_id,max(p.produce_date)as produce_date from tbl_produce p join tbl_animal_info a 
on p.animal_id= a.id group by p.animal_id;
thedata r%rowtype;

begin
  open r;
        loop
             fetch r into thedata;
             exit when r%notfound;
             
              update tbl_animal_info o
                   set o.update_time = thedata.produce_date
                   where (o.update_time < thedata.produce_date or o.update_time is null) and  o.id=thedata.animal_id ;
                   commit;
                   
end loop;
end;

--如果更新时间为空
update tbl_animal_info a set a.update_time =a.create_time
where a.update_time is null or a.update_time<a.create_time;
commit;



--更新时间大于目前系统时间
update tbl_animal_info set update_time =sysdate where update_time>sysdate;
commit;

分享到:
评论

相关推荐

    阿里巴巴数据库操作手册

    - **沟通风险**:业务方、开发人员和DBA之间的信息传递错误或不及时可能导致数据订正未能达到预期目标。 - **回滚风险**:若未备份原始数据,数据订正后的回退操作可能会变得非常困难。 - **同步风险**:数据订正...

    p034基于Django的健身房会员课程预订系统.zip(Python毕设源码+sql文件+文档)

    此外当录入的数据有误的时候还可以通过[修改]按钮对课程信息相关数据进行修改和订正,当数据因为一些原因不在需要的时候可以通过[删除]按钮删除课程信息中不需要的数据。 在首页部分们我设置了网站的导航,导航下面...

    阿里巴巴-数据库-标准操作手册

    - **目的**:通过明确数据订正的操作种类、风险和流程,最大限度减少因数据订正带来的故障。 - **适用范围**:涵盖了新建表数据初始化、现有表数据增删改等多种场景。 - **风险评估**: - 业务风险:订正的业务逻辑...

    p034基于Django的健身房会员课程预订系统.zip

    此外当录入的数据有误的时候还可以通过[修改]按钮对课程信息相关数据进行修改和订正,当数据因为一些原因不在需要的时候可以通过[删除]按钮删除课程信息中不需要的数据。 在首页部分们我设置了网站的导航,导航下面...

    数据库系统实现(斯坦福大学教材)

    书中还对信息集成的最新技术,例如数据仓库、OLAP、数据挖掘、Mediator、数据立方体系统等进行了介绍。本书适合于作为高等院校计算机专业研究生的教材或本科生的教学参考书,也适合作为从事相关研究或开发工作的专业...

    关于数据库系统实现的实例

    书中还对信息集成的最新技术,例如数据仓库、OLAP、数据挖掘、Mediator、数据立方体系统等进行了介绍。本书适合于作为高等院校计算机专业研究生的教材或本科生的教学参考书,也适合作为从事相关研究或开发工作的专业...

Global site tag (gtag.js) - Google Analytics