插入到同一个表-PLSQL之后更新表列

时间:2013-02-09 16:14:12

标签: oracle plsql

表中有4列,marks1,marks2,marks3和total。 当我们插入marks1,marks2和marks3时,触发器应计算总数并更新总数。

2 个答案:

答案 0 :(得分:2)

如果您正在使用Oracle 11g,为了获得所需的结果,您可以向表中添加虚拟列:

SQL> create table your_table(
  2    marks1 number,
  3    marks2 number,
  4    marks3 number
  5  )
  6  ;

Table created

SQL> 
SQL> alter table your_table
  2    add total number generated always as (nvl(marks1, 0)+
  3                                          nvl(marks2, 0)+
  4                                          nvl(marks3, 0)
  5                                          )
  6  ;

Table altered

SQL> insert into your_table(marks1,marks2,marks3)
  2    values(1,2,3);

1 row inserted

SQL> commit;

Commit complete

SQL> select * from your_table;

    MARKS1     MARKS2     MARKS3      TOTAL
---------- ---------- ---------- ----------
         1          2          3          6

答案 1 :(得分:1)

create or replace trigger calc_total
before insert on your_table
for each row
begin
  :new.total := :new.marks1 + :new.marks2 + :new.marks3;
end;