Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got some trigger:

DELIMITER $$ 
CREATE
    TRIGGER `auto_user_auth` AFTER INSERT
    ON `tbl_user`
        FOR EACH ROW BEGIN
            INSERT INTO authassignment(itemname, userid) VALUES ('Customer', NEW.id);
        END$$

DELIMITER ;

There is no error on query that in PhpMyAdmin, but after that on query:

DROP TRIGGER `auto_user_auth`

I'm getting:

1360 - Trigger does not exist

Without DELIMETER ; I'm getting:

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 6

What's I'm doing wrong? Thanks for help

share|improve this question
DELIMETER ; just changes the end of statement delimiter back to a semi-colon as at the beginning you change it to $$ – Geoffrey Aug 5 '12 at 10:56
Well, DELIMETER has a spelling error. I don't know what a Deli-meter measures :) – biziclop Aug 5 '12 at 10:58
Sorry, I used DELIMITER in my example and I just writted wrong on StackOverflow. – PiKey Aug 5 '12 at 11:22
btw, it worked for me using phpmyadmin (creating 2 tables, create trigger, drop trigger). – biziclop Aug 5 '12 at 11:30

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.