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

9 lines
224 B
MySQL
Raw Normal View History

DELIMITER $$
2024-08-20 08:06:10 +00:00
CREATE OR REPLACE DEFINER=`vn`@`localhost` PROCEDURE `bi`.`nigthlyAnalisisVentas`()
BEGIN
CALL analisis_ventas_update;
CALL analisis_ventas_simple;
CALL analisis_ventas_evolution_add;
END$$
DELIMITER ;