Hi,
I have three tables :
StatusTable --> has columns empid, haschanged
EmpTable --> has columns empid, empname, descr
SalaryTable --> has columns empid, salary
I want to create a trigger that updates the column 'haschanged' in the Status table only if the values of 'empname', 'descr' or 'salary' change after an update.
what's the best way to do this? thanks!