存储过程使用大纲 有参数传递
delimiter $$
声明一个名称为get_student_introduce
CREATE PROCEDURE gei_student_introduce(in p_name VARCHAR(20))
开始操作
BEGIN
撰写真正在操作DML+DQL都行
select introduce '简介' from student WHERE userName=p_name;
end $$
delimiter;
使用函数(调用存储过程)
call get_student_introduce();
实际效果