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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…