1. 程式人生 > >MySQL觸發器中變數的使用

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