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
Share on other sites

I think your= are using unstable SQL statements..

 

Try:

 

 

CREATE TRIGGER TBL_TEST_TRIGGER AFTER UPDATE ON TBL_TEST_PRASHANT_EMPLOYEE3

  FOR EACH ROW

 

      UPDATE TBL_TEST_PRASHANT_EMPLOYEE1 SET name = 'test', EMPLOYEE4 SET FLD_DEPT = 'test'; ;

 

 

Link to comment
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 ;

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.