Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
1
respuesta

Hallando el valor total del crédito

CREATE DEFINER=`root`@`localhost` PROCEDURE `limite_creditos`()
BEGIN
    DECLARE limite_credito FLOAT;
    DECLARE limite_credito_acumulado FLOAT DEFAULT 0;
    DECLARE fin_cursor INT DEFAULT 0;
    DECLARE c CURSOR FOR SELECT LIMITE_DE_CREDITO FROM tabla_de_clientes;
    DECLARE CONTINUE HANDLER FOR NOT FOUND SET fin_cursor = 1;
    OPEN c;
    WHILE fin_cursor = 0 DO
        FETCH c INTO limite_credito;
        IF fin_cursor = 0 THEN
            SET limite_credito_acumulado = limite_credito_acumulado + limite_credito;
        END IF;
    END WHILE;
    CLOSE c;
    SELECT limite_credito_acumulado AS 'Total de Límites de Crédito';
END
CALL limite_creditos();

Ingrese aquí la descripción de esta imagen para ayudar con la accesibilidad

1 respuesta

Hola! ¿Cómo estás?

Gracias por compartir tu código con nosotros. Sigue así y no dudes en volver al foro si tienes

alguna pregunta o dificultad.

¡Gracias nuevamente!

Saludos,

Si este post te ayudó, por favor, marca como solucionado ✓. Continúa con tus estudios!