저장 프로시저 만들기:
CREATE procedure ordertotal( in onumber int, in taxable boolean, out ototal decimal(8,2) ) COMMENT 'Obtain order total,optionally adding tax' begin DECLARE total decimal(8,2); declare taxrate int DEFAULT 6; SELECT sum(item_price * quantity) from orderitems where order_num = onumber into total; if taxable then SELECT total+(total/100*taxrate) into total; end if; SELECT total into ototal;
end;
저장 프로시저 호출: 과세 대상이 true
ordertotal(20005,1, @total);
SELECT @total;
저장 프로시저 호출: 과세 대상이 false입니다
ordertotal(20005,1,@total) 호출;
SELECT @total;
위 내용은 mysql 지능형 저장 프로시저 내용입니다. 더 많은 관련 내용은 PHP 중국어 홈페이지(www.php.cn)를 참고해주세요!