I have a column called updated_date, and I wish to update this column when user edit and save other columns in the role. The problem is that when user edit 3 rows, then only the value of the updated_date of the last edited row gets updated.
Is there a way i can update these three roles at the same time? For my pl/sql code, i just use a simple update statement update [table] set [column]=[value] where ROWID=:ROWID. Thank you very much!!