I have the following query:
Insert into tblTest (ID, Name, Age) VALUES (1, 'TestName', 20);
In my trigger, I want to check - if the request identifier is 1, send another request:
Insert into tblTest (ID, Name, Age) VALUES (2, 'TestName', 21);
Otherwise, do nothing.
The problem is that I don’t know how to save the parameters as they are and just change the age, so basically I want to send a SAME request and change a certain parameter (in this case, its age parameter).
source
share