I have a trigger in which I want to have a variable which holds an INT i get from a (SELECT..). So I can use it in two IF statements; so I don't have to call the (SELECT...) twice. How do you declare/use variables in MySQL triggers?
|
|
CREATE TRIGGER clearcamcdr AFTER INSERT ON Dont try this @ home |
||
|
|
|
|
You can declare local variables in MySQL triggers, with the Here's an example:
When you assign a value to a variable, you must ensure that the query returns only a single value, not a set of rows or a set of columns. For instance, if your query returns a single value in practice, it's okay but as soon as it returns more than one row, you get " You can use
|
|||
|
|
|
|
Or you can just include the SELECT statement in the SQL that's invoking the trigger, so its passed in as one of the columns in the trigger row(s). As long as you're certain it will infallibly return only one row (hence one value). (And, of course, it must not return a value that interacts with the logic in the trigger, but that's true in any case.) |
||
|
|
|
|
END;`; |
||
|
|
