-
Website
http://www.codespatter.com -
Original page
http://codespatter.com/2008/05/06/how-to-use-triggers-to-track-changes-in-mysql/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
itjobs1
1 comment · 2 points
-
sikat ang pinoy
1 comment · 1 points
-
billymcclure
1 comment · 1 points
-
Ben Bangert
1 comment · 2 points
-
jakubmusil
1 comment · 1 points
-
-
Popular Threads
please can u explain what is
OLD.first_name != NEW.first_name
are they table names?
I need to write atrigger to get the changed row and also how do i get the same query either insert,update or delete.
thanks in advance
IF OLD.first_name != NEW.first_name
That checks if the UPDATE query is changing the information for first_name.
thanks for help