PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Retornando conjunto de linhas da função plpgsql.

CREATE FUNCTION test() 
RETURNS my_table AS
$BODY$
DECLARE
    q4 my_table;
BEGIN
    -- add brackets to get a value 
    -- select row as one value, as q4 is of the type my_table
    -- and limit result to one row
    q4 := (SELECT my_table FROM my_table ORDER BY 1 LIMIT 1);
    RETURN q4;
END;$BODY$
-- change language to plpgsql
LANGUAGE plpgsql;
  • Você não pode usar variáveis ​​em sql funções, use plpgsql .
  • Você pode atribuir um valor único a uma variável, enquanto select query retorna o conjunto de linhas.
  • Você precisa selecionar uma linha como um valor, pois a variável é do tipo composto.

Exemplo de uso de um loop:
DROP FUNCTION test();
CREATE FUNCTION test() 
-- change to SETOF to return set of rows, not a single row
RETURNS SETOF my_table AS
$BODY$
DECLARE
    q4 my_table;
BEGIN
    FOR q4 in
        SELECT * FROM my_table
    LOOP
        RETURN NEXT q4;
    END LOOP;
END;$BODY$
LANGUAGE plpgsql;

SELECT * FROM test();

Leia a documentação sobre Como retornar de uma função