Is it possible to scroll through all column names at run time?
Scenario: Record all table columns that have been modified. If some values ββhave not changed, do not register them.
DROP TRIGGER IF EXISTS t_before_update_test; DELIMITER $$ CREATE TRIGGER t_before_update_test BEFORE UPDATE ON test FOR EACH ROW BEGIN
This is an example of a working copy, where now I need to skip all the columns available in OLD or NEW.
source share