Being a complete non programmer, i thought it would be a good idea to help others like me who have no programming knowledge but want to develop web based applications. Additionally i wanted to be able to access all these for my own repetitive use.
Monday, February 27, 2012
create mysql triggers
table names
testing.name
testing_T.fullname
CREATE TRIGGER addnm AFTER INSERT ON testing
FOR EACH ROW BEGIN
INSERT INTO testing_T SET fullname = NEW.name;
END;
No comments:
Post a Comment