关键字 类似指针传值 in 输入模型 out 输出模式 inout 输入输出模式 if循环 DROP PROCEDURE IF EXISTS getmax; DELIMITER $ create procedure getmax(in a int,in b int,out c int) begin if (a>=b) then set c=a; else set c=b; end if; end $ delimiter ; 赞微海报分享
近期评论