0
I need to make a Rigger in mysql, but I need it to be executed only when there is an update in the auctions, which change the status to 3 or 4. The way I did below is correct?
It is of the type AFTER UPDATE
BEGIN
IF (NEW.status IN ('3','4')) THEN
QUERY_AQUI
END IF;
END