mysql set column equal to another automatic

Solutions on MaxInterview for mysql set column equal to another automatic by the best coders in the world

showing results for - "mysql set column equal to another automatic"
Emelie
24 Jan 2017
1CREATE TRIGGER foobar AFTER UPDATE ON table
2  FOR EACH ROW SET foo = foo + NEW.bar;
3