I want to implement a loop inside a function but I receive this error:
ERROR query has no destination for result data
The code:
CREATE OR REPLACE FUNCTION  my_function(ill int, ndx_ bigint) RETURNS int AS
$$
DECLARE
    found_id int;
BEGIN
    FOR found_id IN 1..25 LOOP
        SELECT 1;
    END LOOP;
    RETURN 1;
END;
$$ LANGUAGE plpgsql;
SELECT my_function( 0,79 );
Why? How to fix it?
 
    