can someone please explain what is meant by:
:new and :old in trigger code.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
:newand:oldare pseudo-records that let you access the new and old values of particular columns. If I have a tableand I insert a row
then in a row-level before insert trigger
while
If you then update that row
then in a before update row-level trigger
while
If I then delete the row
then in a before delete row-level trigger,
while