CREATE DEFINER=`root`@`localhost` PROCEDURE `reajuste_comissao_vendedores`(
vMatricula varchar (5),
vPercent decimal (3.2))
BEGIN
UPDATE tabela_de_vendedores
SET percentual_comissao = percentual_comissao * (1 + vPercent)
where matricula = vMatricula;
END
------------------------------------------------------------------------------
call reajuste_comissao_vendedores('00235','00.9');
-----------------------------------------------------------------------------------
SELECT * FROM tabela_de_vendedores
where matricula = '00235';
--------------------------------------------------------------------------------