MySQL触发器中变量的使用

使用 select @user=user from t_users 

提示 Not allowed to return a result set from atrigger

在储存过程中可以这样使用 但触发器中无法使用,

需改变方式 为 select user,pwd into @user,@pwd from t_users


你可能感兴趣的:(MySQL,mysql,触发器,变量)