create procedure pro_getId(out userName char(20),in userId int)beginselect Uname from user where User_id=userId;end--L调用存储过程CALL proc_employee_getCount(@userName);