trigger value from maltiple table to single table mysql

Solutions on MaxInterview for trigger value from maltiple table to single table mysql by the best coders in the world

showing results for - "trigger value from maltiple table to single table mysql"
Ffion
28 Aug 2016
1CREATE TRIGGER some_name AFTER INSERT ON `x` FOR EACH ROW INSERT INTO m (name) VALUES (NEW.name);
2
similar questions