I have an application, where the backend is using MySQL DB. And in this database, there are two standard columns "time_created" and "time_updated" in each table. As the name suggested, the first column records the current timestamp when the row is being inserted, while the 2nd one is for either inserted or updated action.
My Question is, is it possible to have a way to find out any rows in any table that are being "touched", when I click the "save" button in the frontend ? Is there a SQL way to do that ?
Thanks,
Jack