sql >> Base de Datos >  >> RDS >> PostgreSQL

Devolviendo un conjunto de filas de la función 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;
  • No puede usar variables en sql funciones, use plpgsql .
  • Puede asignar un valor único a una variable, mientras que select query devuelve un conjunto de filas.
  • Debe seleccionar una fila como un valor, ya que la variable es de tipo compuesto.

Ejemplo de uso de un bucle:

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();

Lea la documentación sobre Volver desde una función