ストアド プロシージャの作成:
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
call ordertotal(20005,1,@total);
SELECT @total;
ストアド プロシージャの呼び出し: 課税対象は false
call ordertotal(20005,1,@total);
SELECT @total;
上記は、mysql インテリジェント ストアド プロシージャの内容です。さらに関連する内容については、PHP 中国語 Web サイト (www.php.ん)!