Movatterモバイル変換


[0]ホーム

URL:



Facebook
Postgres Pro
Facebook
Downloads
38.4. User-defined Procedures
Prev UpChapter 38. ExtendingSQLHome Next

38.4. User-defined Procedures

A procedure is a database object similar to a function. The key differences are:

  • Procedures are defined with theCREATE PROCEDURE command, notCREATE FUNCTION.

  • Procedures do not return a function value; henceCREATE PROCEDURE lacks aRETURNS clause. However, procedures can instead return data to their callers via output parameters.

  • While a function is called as part of a query or DML command, a procedure is called in isolation using theCALL command.

  • A procedure can commit or roll back transactions during its execution (then automatically beginning a new transaction), so long as the invokingCALL command is not part of an explicit transaction block. A function cannot do that.

  • Certain function attributes, such as strictness, don't apply to procedures. Those attributes control how the function is used in a query, which isn't relevant to procedures.

The explanations in the following sections about how to define user-defined functions apply to procedures as well, except for the points made above.

Collectively, functions and procedures are also known asroutines. There are commands such asALTER ROUTINE andDROP ROUTINE that can operate on functions and procedures without having to know which kind it is. Note, however, that there is noCREATE ROUTINE command.


Prev Up Next
38.3. User-defined Functions Home 38.5. Query Language (SQL) Functions
epubpdf
Go to PostgreSQL 11
By continuing to browse this website, you agree to the use of cookies. Go toPrivacy Policy.

[8]ページ先頭

©2009-2025 Movatter.jp