drop procedure if exists vv;
create procedure vv()
BEGIN
 select * from t_dept;
END

call vv()   // 调用函数