带有输入值的 phpmyadmin 存储过程调用

phpmyadmin store prodcedure call with input value

Begin
   Select MAX(score) from score, student where student.student_id = score.student_id and event_id = eventid;
End

当我创建它时,如何使用输入值 eventid=1 调用它?

我找到方法了,就是调用函数名(1是eventid值)