mysql 存储过程输入输出参数示例
程序员文章站
2024-02-29 19:02:52
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;
上一篇: 零基础写Java知乎爬虫之准备工作
下一篇: 在H5页面调用oc方法