Skip to main content
trigger Oldtrigger on Contact (before update,after insert) {

for (Contact account : Trigger.new) {

Contact oldAccount = Trigger.oldMap.get(account.ID);

system.debug('⌗⌗⌗⌗⌗'+oldAccount);

}

}

How is it working and where I can see the output.
2 answers
0/9000