Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
12a2121c
Commit
12a2121c
authored
Sep 24, 2004
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix slightly misleading description of PERFORM syntax.
parent
ae722838
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
doc/src/sgml/plpgsql.sgml
doc/src/sgml/plpgsql.sgml
+7
-5
No files found.
doc/src/sgml/plpgsql.sgml
View file @
12a2121c
<!--
$PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.4
6 2004/08/16 17:52:06
tgl Exp $
$PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.4
7 2004/09/24 18:54:14
tgl Exp $
-->
<chapter id="plpgsql">
...
...
@@ -1073,10 +1073,12 @@ END;
PERFORM <replaceable>query</replaceable>;
</synopsis>
This executes <replaceable>query</replaceable>, which must be a
<command>SELECT</command> statement, and discards the
result. <application>PL/pgSQL</application> variables are
substituted in the query as usual. Also, the special variable
This executes <replaceable>query</replaceable> and discards the
result. Write the <replaceable>query</replaceable> the same
way as you would in an SQL <command>SELECT</> command, but replace the
initial keyword <command>SELECT</> with <command>PERFORM</command>.
<application>PL/pgSQL</application> variables will be
substituted into the query as usual. Also, the special variable
<literal>FOUND</literal> is set to true if the query produced at
least one row or false if it produced no rows.
</para>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment