MySQL Forums
Forum List  »  Triggers

Re: Syntax error in trigger
Posted by: Gabriella Pepe
Date: August 13, 2017 12:15AM

CREATE TRIGGER 'onNewRow'

AFTER INSERT
ON wp_postmeta FOR EACH ROW

BEGIN

DECLARE current_id bigint(20);
DECLARE mail_address varchar(100);
DECLARE user_id bigint(20);

SET current_id = post_id

SET mail_address = (SELECT meta_value FROM wp_postmeta WHERE post_id = current_id AND meta_key = "_from_email")

SET user_id = (SELECT ID FROM wp_users WHERE user_email = mail_address)

IF(exists(
SELECT * FROM wp_posts WHERE ID = current_id AND post_type = "inbound" AND post_title IN ("Website feedback","General contact form")) THEN

UPDATE wp_posts SET post_author = user_id WHERE ID = current_id

END IF;

END;

Options: ReplyQuote


Subject
Views
Written By
Posted
1727
August 11, 2017 03:37AM
646
August 11, 2017 10:57AM
838
August 12, 2017 02:47AM
641
August 12, 2017 07:49AM
Re: Syntax error in trigger
775
August 13, 2017 12:15AM
848
August 13, 2017 12:35AM
788
August 13, 2017 11:09AM
696
August 14, 2017 05:47AM
708
August 14, 2017 10:17AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.