mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Update RETURN NEXT documentation for plpgsql.
This commit is contained in:
@ -1,4 +1,4 @@
|
|||||||
<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.119 2007/11/28 20:13:06 momjian Exp $ -->
|
<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.120 2007/11/28 20:56:35 momjian Exp $ -->
|
||||||
|
|
||||||
<chapter id="plpgsql">
|
<chapter id="plpgsql">
|
||||||
<title><application>PL/pgSQL</application> - <acronym>SQL</acronym> Procedural Language</title>
|
<title><application>PL/pgSQL</application> - <acronym>SQL</acronym> Procedural Language</title>
|
||||||
@ -132,10 +132,11 @@
|
|||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
<application>PL/pgSQL</> functions can also be declared to return
|
<application>PL/pgSQL</> functions can also be declared to return a
|
||||||
a <quote>set</>, or table. Such a function generates its output by
|
group of values, either as a single row, or a group of rows, like a
|
||||||
executing <command>RETURN NEXT</> for each desired element of the result
|
table. Such a function generates its output by executing
|
||||||
set, or by using <command>RETURN QUERY</> to output the result of
|
<command>RETURN NEXT</> for each desired element of the result set,
|
||||||
|
or by using <command>RETURN QUERY</> to output the result of
|
||||||
evaluating a query.
|
evaluating a query.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user