Jump to content

[SOLVED] Trigger Problem


toprashantjha

Recommended Posts

Hi all,

 

      I am very new with MYSQL.. i was trying to create one trigger as mentioned in the code given bellow... But it is not creating trigger and if i remove BEGIN and END from the query then it is working fine (if i go for only on action).

any idea????

i am using  MYSQL GUI V6.0

 

CREATE TRIGGER TBL_TEST_TRIGGER AFTER UPDATE ON TBL_TEST_PRASHANT_EMPLOYEE3
  FOR EACH ROW 
BEGIN
      UPDATE TBL_TEST_PRASHANT_EMPLOYEE1 SET name = 'test' ;
      UPDATE TBL_TEST_PRASHANT_EMPLOYEE4 SET FLD_DEPT = 'test' ;
END;

Link to comment
https://forums.phpfreaks.com/topic/133631-solved-trigger-problem/
Share on other sites

Exactly... what I was just going to post...

 

DELIMITER $$
CREATE TRIGGER TBL_TEST_TRIGGER AFTER UPDATE ON TBL_TEST_PRASHANT_EMPLOYEE3
  FOR EACH ROW
BEGIN
      UPDATE TBL_TEST_PRASHANT_EMPLOYEE1 SET name = 'test' ;
      UPDATE TBL_TEST_PRASHANT_EMPLOYEE4 SET FLD_DEPT = 'test' ;
END $$
DELIMITER ;

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.