mysql 存储过程输入输出参数示例
程序员文章站
2024-03-02 08:40:04
drop procedure if exists my_procedure;
create procedure my_procedure(in my_id in...
drop procedure if exists my_procedure; create procedure my_procedure(in my_id int,out my_name char) begin select list_name into my_name from aa_list where list_id=my_id; end; call my_procedure(24,@a); select @a;