I have two MySQL tables. A votes table (id, userId, postId, voteTypeId), and a posts table (id, postTypeId, userId, parentId) table. I'm writing a trigger that fires after insert on votes.

I would like the trigger to update a post in the posts table. But this post is not the same one referenced in my votes table under postId; It is the parent of that post.

BEGIN
CASE NEW.voteTypeId
    WHEN 2 THEN UPDATE posts SET posts.acceptedAnswerId = NEW.postId WHERE posts.id = @the parent postId of NEW.postId
    ELSE
        BEGIN
        END;
    END CASE;
END

I tried using this instead of @the parent of... :

(SELECT posts.parentId FROM posts WHERE posts.id = NEW.postId)

But you I don't think you can do SELECTS in triggers unless you use some type of SELECT INTO syntax. My only reference to the parent post that I want to update is its child postId in referenced in votes. So I don't know how to do the update without grabbing the right id through a select.

Is this possible?

link|improve this question

You can in fact do a SELECT within a trigger. Your other syntax however looks a bit off. – Mchl Feb 4 '11 at 16:10
@Mchl, I tried a few combinations, but it didn't work. Can you point me to what I'm doing wrong? – Mohamad Feb 4 '11 at 16:35
feedback

1 Answer

up vote 1 down vote accepted

I'd do it like that:

BEGIN
  IF (NEW.voteTypeId = 2) THEN
    UPDATE
      posts AS p
    CROSS JOIN
      posts AS p2
    ON
      p.id = p2.parentId
    SET
     p.acceptedAnswerId = NEW.postId
    WHERE
     p2.id = NEW.postId;
  END IF;
END
link|improve this answer
thanks for that. Can I just ask you why you use a cross join? Why not just a normal join with an alias? – Mohamad Feb 4 '11 at 21:39
1  
In MySQL INNER JOIN and CROSS JOIN and JOIN are all equivalent. Actually, according to ANSI SQL specification, I should have used INNER JOIN here (because I used ON join condition instead of USING()). Functionally it makes no difference, but potentially omproves portability. – Mchl Feb 4 '11 at 21:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.