用于测试 class 中学生人数的 Oracle-Trigger
Oracle-Trigger for testing the number of students in a class
我正在尝试创建一个限制组中学生人数的插入前触发器,我的意思是,如果组中的学生人数大于 5,则用户不能在中引入任何其他记录同样的小组,但他可以在其他少于 5 名学生的小组中。
在 table 我有这个信息:
所以触发器应该允许在除第二行之外的所有行中添加记录,因为那里已经有 5 个学生。
我尝试了以下代码:
create or replace trigger groups_capacity
before insert on s183410_group
for each row
declare
counter INTEGER;
BEGIN
select count(*)into counter from s183410_group group by class_id;
if counter>5 and :old.class_id=:new.class_id then
raise_application_error(-20002,'This class is full.There cannot be more than 5 students in the same group.');
end if;
END;
我认为计数器不会更改每一行的值。我是 oracle 的新手,不知道如何使用它。
非常感谢您!!
您需要使用 Statement Trigger
,其中检查 class_id 的任何组是否违反规则,而不是 Row Level Trigger
以避免触发突变错误:
CREATE OR REPLACE TRIGGER groups_capacity
AFTER INSERT ON s183410_group
DECLARE
counter INT;
BEGIN
SELECT MAX(COUNT(*)) INTO counter FROM s183410_group GROUP BY class_id;
IF counter > 5 THEN
raise_application_error(-20002,
'This class is full.
There cannot be more than 5 students in the same group.');
END IF;
END;
我正在尝试创建一个限制组中学生人数的插入前触发器,我的意思是,如果组中的学生人数大于 5,则用户不能在中引入任何其他记录同样的小组,但他可以在其他少于 5 名学生的小组中。
在 table 我有这个信息:
所以触发器应该允许在除第二行之外的所有行中添加记录,因为那里已经有 5 个学生。
我尝试了以下代码:
create or replace trigger groups_capacity
before insert on s183410_group
for each row
declare
counter INTEGER;
BEGIN
select count(*)into counter from s183410_group group by class_id;
if counter>5 and :old.class_id=:new.class_id then
raise_application_error(-20002,'This class is full.There cannot be more than 5 students in the same group.');
end if;
END;
我认为计数器不会更改每一行的值。我是 oracle 的新手,不知道如何使用它。
非常感谢您!!
您需要使用 Statement Trigger
,其中检查 class_id 的任何组是否违反规则,而不是 Row Level Trigger
以避免触发突变错误:
CREATE OR REPLACE TRIGGER groups_capacity
AFTER INSERT ON s183410_group
DECLARE
counter INT;
BEGIN
SELECT MAX(COUNT(*)) INTO counter FROM s183410_group GROUP BY class_id;
IF counter > 5 THEN
raise_application_error(-20002,
'This class is full.
There cannot be more than 5 students in the same group.');
END IF;
END;