Nsan
MIS
- Apr 30, 2003
- 13
Hi,
I need to create a trigger that will replace a value that has been inserted. If a negative number is inserted into a record how to change that value to a positive value.
create or replace trigger num_val
after insert of n_app on emp
begin
If n_app = ( a negative number)
I need to create a trigger that will replace a value that has been inserted. If a negative number is inserted into a record how to change that value to a positive value.
create or replace trigger num_val
after insert of n_app on emp
begin
If n_app = ( a negative number)