Create Or Replace Trigger trg_view_report
  Instead Of Insert or update or delete on view_for_report
  for each row
Declare

begin
  If Inserting Then
 
   
    if :new.temperature1 <= 250 then
        
      insert into originaldata_report
        (id,
         wid,
         wname,
         jurisdiction,
         jurisdiction_name,
         year,
         month,
         day,
         temperature,
         humidity)
      values
        (originaldata_report_id.nextval,
         :new.wid,
         :new.wname,
         1,
         '传感器一',
         :new.year,
         :new.month,
         :new.day,
         :new.temperature1,
         :new.humidity1);
      
        
    end if;
    if :new.temperature2 <= 250 then
      
      insert into originaldata_report
        (id,
         wid,
         wname,
         jurisdiction,
         jurisdiction_name,
         year,
         month,
         day,
         temperature,
         humidity)
      values
        (originaldata_report_id.nextval,
         :new.wid,
         :new.wname,
         2,
         '传感器二',
         :new.year,
         :new.month,
         :new.day,
         :new.temperature2,
         :new.humidity2);
    end if;
    if :new.temperature3 <= 250 then
      insert into originaldata_report
        (id,
         wid,
         wname,
         jurisdiction,
         jurisdiction_name,
         year,
         month,
         day,
         temperature,
         humidity)
      values
        (originaldata_report_id.nextval,
         :new.wid,
         :new.wname,
         3,
         '传感器三',
         :new.year,
         :new.month,
         :new.day,
         :new.temperature3,
         :new.humidity3);
    end if;
    if :new.temperature4 <= 250 then
      insert into originaldata_report
        (id,
         wid,
         wname,
         jurisdiction,
         jurisdiction_name,
         year,
         month,
         day,
         temperature,
         humidity)
      values
        (originaldata_report_id.nextval,
         :new.wid,
         :new.wname,
         4,
         '传感器四',
         :new.year,
         :new.month,
         :new.day,
         :new.temperature4,
         :new.humidity4);
    end if;
    if :new.temperature5 <= 250 then
      insert into originaldata_report
        (id,
         wid,
         wname,
         jurisdiction,
         jurisdiction_name,
         year,
         month,
         day,
         temperature,
         humidity)
      values
        (originaldata_report_id.nextval,
         :new.wid,
         :new.wname,
         5,
         '传感器五',
         :new.year,
         :new.month,
         :new.day,
         :new.temperature5,
         :new.humidity5);
    end if;
    if :new.temperature6 <= 250 then
      insert into originaldata_report
        (id,
         wid,
         wname,
         jurisdiction,
         jurisdiction_name,
         year,
         month,
         day,
         temperature,
         humidity)
      values
        (originaldata_report_id.nextval,
         :new.wid,
         :new.wname,
         6,
         '传感器六',
         :new.year,
         :new.month,
         :new.day,
         :new.temperature6,
         :new.humidity6);
    end if;
    if :new.temperature7 <= 250 then
      insert into originaldata_report
        (id,
         wid,
         wname,
         jurisdiction,
         jurisdiction_name,
         year,
         month,
         day,
         temperature,
         humidity)
      values
        (originaldata_report_id.nextval,
         :new.wid,
         :new.wname,
         7,
         '传感器七',
         :new.year,
         :new.month,
         :new.day,
         :new.temperature7,
         :new.humidity7);
    end if;
    if :new.temperature8 <= 250 then
      insert into originaldata_report
        (id,
         wid,
         wname,
         jurisdiction,
         jurisdiction_name,
         year,
         month,
         day,
         temperature,
         humidity)
      values
        (originaldata_report_id.nextval,
         :new.wid,
         :new.wname,
         8,
         '传感器八',
         :new.year,
         :new.month,
         :new.day,
         :new.temperature8,
         :new.humidity8);
    end if;
    if :new.temperature9 <= 250 then
      insert into originaldata_report
        (id,
         wid,
         wname,
         jurisdiction,
         jurisdiction_name,
         year,
         month,
         day,
         temperature,
         humidity)
      values
        (originaldata_report_id.nextval,
         :new.wid,
         :new.wname,
         9,
         '传感器九',
         :new.year,
         :new.month,
         :new.day,
         :new.temperature9,
         :new.humidity9);
    end if;
    if :new.temperature10 <= 250 then
      insert into originaldata_report
        (id,
         wid,
         wname,
         jurisdiction,
         jurisdiction_name,
         year,
         month,
         day,
         temperature,
         humidity)
      values
        (originaldata_report_id.nextval,
         :new.wid,
         :new.wname,
         10,
         '传感器十',
         :new.year,
         :new.month,
         :new.day,
         :new.temperature10,
         :new.humidity10);
    end if;
  elsif Deleting then
    Delete from originaldata_report t where t.wid = :Old.wid;
  End if;
end ;

TRIGGERS_监测系统_多表视图触发器—向原始数据报表中插入数据的更多相关文章

  1. TRIGGERS_监测系统_原始数据表触发器—调用告警信息存储过程

    //每次向originaldata表中插入数据就会触发该触发器 create or replace trigger originaldata_to_alarm  after insert on ori ...

  2. 触发器修改后保存之前的数据 表中插入数据时ID自动增长

    create or replace trigger t before update on test5 for each rowbegin insert into test55 values (:old ...

  3. 第18课-数据库开发及ado.net 连接数据库.增.删.改向表中插入数据并且返回自动编号.SQLDataReade读取数据

    第18课-数据库开发及ado.net 连接数据库.增.删.改向表中插入数据并且返回自动编号.SQLDataReade读取数据 ADO.NET 为什么要学习? 我们要搭建一个平台(Web/Winform ...

  4. Hive通过查询语句向表中插入数据注意事项

    最近在学习使用Hive(版本0.13.1)的过程中,发现了一些坑,它们或许是Hive提倡的比关系数据库更加自由的体现(同时引来一些问题),或许是一些bug.总而言之,这些都需要使用Hive的开发人员额 ...

  5. EF Core中,通过实体类向SQL Server数据库表中插入数据后,实体对象是如何得到数据库表中的默认值的

    我们使用EF Core的实体类向SQL Server数据库表中插入数据后,如果数据库表中有自增列或默认值列,那么EF Core的实体对象也会返回插入到数据库表中的默认值. 下面我们通过例子来展示,EF ...

  6. (笔记)Mysql命令insert into:向表中插入数据(记录)

    insert into命令用于向表中插入数据. insert into命令格式:insert into <表名> [(<字段名1>[,..<字段名n > ])] v ...

  7. Mysql命令insert into:向表中插入数据(记录)

    insert into命令用于向表中插入数据. insert into命令格式:insert into <表名> [(<字段名1>[,..<字段名n > ])] v ...

  8. 初学者使用MySQL_Workbench 6.0CE创建数据库和表,以及在表中插入数据。

    标签: mysqlworkbench数据库 2013-10-09 20:17 19225人阅读 评论(14) 收藏 举报  分类: mysql(1)  版权声明:本文为博主原创文章,未经博主允许不得转 ...

  9. Hive通过查询语句向表中插入数据过程中发现的坑

    前言 近期在学习使用Hive(版本号0.13.1)的过程中,发现了一些坑,它们也许是Hive提倡的比关系数据库更加自由的体现(同一时候引来一些问题).也许是一些bug.总而言之,这些都须要使用Hive ...

随机推荐

  1. Git / Bower Errors: Exit Code # 128 & Failed connect

    今天第一次使用bower来安装插件,上来就报了这个错. 然后在google上查找,很多人都有做出回答,让执行如下 git config --global url.https://github.com/ ...

  2. C语言内存分配函数

    c语言标准库提供了3个内存分配的函数,都包含在头文件<stdlib.h>中 1.malloc 函数原型: void *malloc( size_t size ); 参数:要分配内存大小的字 ...

  3. DAO 基础学习笔记

    一.DAO 1.概念: (1)Date Access Object(数据存取对象) (2)位于业务逻辑和持久化数据之间 (3)实现对持久化数据的访问 (4)类---> DAO --->数据 ...

  4. Spring Data JPA之Hello World

    Spring Data Jpa 配置 使用 Spring Data JPA 进行持久层开发需要的四个步骤: 1.配置 Spring 整合 JPA 2.在 Spring 配置文件中配置 Spring D ...

  5. ACM训练计划step 2 [非原创]

    (Step2-500题)POJ训练计划+SGU 经过Step1-500题训练,接下来可以开始Step2-500题,包括POJ训练计划的298题和SGU前两章200题.需要1-1年半时间继续提高解决问题 ...

  6. android中处理XML的方式

    http://www.cnblogs.com/zhangdongzi/archive/2011/04/14/2016434.html 放在assets目录 http://www.cnblogs.com ...

  7. Struts2源代码解读之Action调用

    对于Struts2源代码的分析已经有些时日了,虽然网上有很多解读代码,不过自己还是写一个放上来,供大家参考一下. 解读过程: 直接在action类中打断点(包括构造函数和待执行方法)进行debug调试 ...

  8. hdu 1885 Key Task(bfs+状态压缩)

    Problem Description The Czech Technical University years of its existence . Some of the university b ...

  9. (史上最全的ios源码汇总)

    按钮类         按钮 Drop Down Control         http://www.apkbus.com/android-106661-1-1.html 按钮-Circular M ...

  10. Bom和Dom编程以及js中prototype的详解

    一.Bom编程: 1.事件练习: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "h ...