How do I create a trigger on a table if a certain row is updated ?
For example, a table called DefaultValue with :
ModuleId char(10),
FieldId char(10),
DefVal char(3)
If I update the table 'update DefaultValue set defval='OFF' where
FieldId='MODULESTATUS' then it will fire the event.
Thank you in advance
Andy