Please tell me how to get the data, not the names of the columns. I do the before - update trigger, which saves changes from the main table to the shadow table - it looks like this
INSERT INTO s_sys (time_edit, guid, edit_string) VALUES (old.time_edit, old.guid, ( SELECT CONCAT('old.', ( SELECT GROUP_CONCAT(COLUMN_NAME SEPARATOR ', old.') FROM information_schema.columns WHERE TABLE_NAME = 'sys' ) ) ) ); Please help get the data fields and not their headers