存储过程——存储函数

1.存储函数

存储函数的弊端,必须要有返回值,能使用存储函数的地方也能使用存储过程。
存储过程——存储函数_第1张图片
案例需求
存储过程——存储函数_第2张图片

create function fun1(n int)
returns int deterministic
begin
	declare total int default 0;
	while n>0 do
		set total := total +_n;
		set n := n - 1;
	end while;

	return total;
end;

select fun1(100);

你可能感兴趣的:(MySQL知识,mysql,数据库,sql)