diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-03-17 19:53:08 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-03-17 19:53:08 +0000 |
commit | ccfa6f1c1e66afbd331ea7bc12c29245bae0c499 (patch) | |
tree | 7188bb725469b1ec4e37b6197307b9714d0b6d78 | |
parent | 77312655a9ac4d408489e0a65bb17edf2d450c31 (diff) | |
download | postgresql-ccfa6f1c1e66afbd331ea7bc12c29245bae0c499.tar.gz postgresql-ccfa6f1c1e66afbd331ea7bc12c29245bae0c499.zip |
Add mention of new sets returning functions capability.
-rw-r--r-- | doc/FAQ | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,7 +1,7 @@ Frequently Asked Questions (FAQ) for PostgreSQL - Last updated: Mon Mar 17 14:47:21 EST 2003 + Last updated: Mon Mar 17 14:52:36 EST 2003 Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us) @@ -1060,10 +1060,8 @@ CREATE TABLE test (x int, modtime timestamp DEFAULT CURRENT_TIMESTAMP ); 4.25) How do I return multiple rows or columns from a function? - You can return result sets from PL/pgSQL functions using refcursors. - See - http://www.PostgreSQL.org/docs/view.php?version=current&idoc=1&file=pl - pgsql-cursors.html, section 23.7.3.3. + In 7.3, you can easily return multiple rows or columns from a + function, http://techdocs.postgresql.org/guides/SetReturningFunctions. 4.26) Why can't I reliably create/drop temporary tables in PL/PgSQL functions? |