delimiter //create procedure f(in pid int,out pct int)begindelete from test where id=pid;select count(id) from test into pct;end//delimiter ;call f(4,@name);select @name;
添加回答
举报
0/150
提交
取消