Olá!
Estou com dificuldade na criação da function do exercício. O seguinte erro aparece:
*Error 1418: This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you might want to use the less safe logbintrustfunctioncreators variable) *
CREATE FUNCTION `f_numero_aleatorio` (min INT, max INT)
RETURNS INTEGER
BEGIN
DECLARE vRetorno INT;
SELECT FLOOR((RAND() * (max-min+1)) + min) INTO vRetorno;
RETURN vRetorno;
END