salix/db/routines/bi/procedures/nigthlyAnalisisVentas.sql

9 lines
226 B
MySQL
Raw Permalink Normal View History

DELIMITER $$
CREATE OR REPLACE DEFINER=`root`@`localhost` PROCEDURE `bi`.`nigthlyAnalisisVentas`()
BEGIN
CALL analisis_ventas_update;
CALL analisis_ventas_simple;
CALL analisis_ventas_evolution_add;
END$$
DELIMITER ;