Untitled
unknown
plain_text
a year ago
228 B
8
Indexable
create or replace trigger dob_check
before insert on students
for each row
begin
if :new.dob > sysdate then
raise_application_error(-20001, 'Person can not be born in the future');
end if;
end;
/Editor is loading...
Leave a Comment