Créer une procédure stockée :
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;
fin ;
Appeler une procédure stockée : taxable est vrai
appeler ordertotal(20005,1, @total);
SELECT @total;
Appel de la procédure stockée : taxable est faux
appelez ordertotal(20005,1,@total);
SELECT @total;
Ce qui précède est le contenu de la procédure stockée intelligente mysql. Pour plus de contenu connexe, veuillez faire attention au site Web PHP chinois (www.php.cn) !