デバッグの助けが必要なコードがいくつかありますが、そのうちの1つを実行できれば、残りを取得できると思います(ああ、どうすればいいですか)。
create or replace
trigger minimumwage
before insert or update on Employee
for each row
begin
if :new.Wage < 7.25
then raise_application_error('-20000,Pay is below Texas minimum wage!');
end if;
end;
/
学校のサーバーで sqlplus を介して実行されているテーブルでこれを実行しようとしています。