mysql怎么执行存储过程语句

2025-03-27 00:44:02
推荐回答(1个)
回答1:

比方说你创建存储过程的语句如下:

create procedure test_proc(count int)

那么执行存储过程的语句就是:

call test_proc(500);