Could you help me to complete my work. Because I'm a fresher to Oracle Technology.
I want to insert value to second table instead of first table using trigger. If I try to insert any value in first table, It will insert into second table instead of first table. Please help me with this. Thanks to all. Here is the sample data
create table table_1(id number); create table table_2(id number); I'm going to insert value in table_1 like insert into table_1 values(10);
select * from table_2;
Sample O/P: id
10
select * from table_1;