-
年少有为 数据小白Lv1
发表于2021-9-27 20:07
悬赏1
已解决
楼主
写了一个存储过程,通过存储过程组件调用时,参数列表是空的,存储过程的入参无法输入,不知道如何操作,能让参数列表显示出来,请大神指教!
4个回答
DROP TABLE if exists test ;
CREATE TABLE test(
id int(11) NULL
) ;
drop procedure if exists sp1 ;
create procedure sp1(in p int)
comment 'insert into a int value'
begin
declare v1 int ;
set v1 = p ;
insert into test(id) values(v1) ;
end
;