/
Ao
/
MaxReport
Обзор
Документация
Войти
/
Ao
/
MaxReport
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
pgsql/doc/src/sgml/html/functions.html
33 строки
16 KB
AoAnima
first_commit
13 июл 2026, 17:47
13 июл 2026, 17:47
f1a670a
Код
Авторство
О чём код?
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type … [Строка слишком длинная. Вы можете скачать файл] <span class="productname">PostgreSQL</span> provides a large number of functions and operators for the built-in data types. This chapter describes most of them, although additional special-purpose functions appear in relevant sections of the manual. Users can also define their own functions and operators, as described in <a class="xref" href="server-programming.html" title="Part V. Server Programming">Part V</a>. The <span class="application">psql</span> commands <code class="command">\df</code> and <code class="command">\do</code> can be used to list all available functions and operators, respectively. </p><p> The notation used throughout this chapter to describe the argument and result data types of a function or operator is like this: </p><pre class="synopsis"> <code class="function">repeat</code> ( <code class="type">text</code>, <code class="type">integer</code> ) → <code class="returnvalue">text</code> </pre><p> which says that the function <code class="function">repeat</code> takes one text and one integer argument and returns a result of type text. The right arrow is also used to indicate the result of an example, thus: </p><pre class="programlisting"> repeat('Pg', 4) → <code class="returnvalue">PgPgPgPg</code> </pre><p> </p><p> If you are concerned about portability then note that most of the functions and operators described in this chapter, with the exception of the most trivial arithmetic and comparison operators and some explicitly marked functions, are not specified by the <acronym class="acronym">SQL</acronym> standard. Some of this extended functionality is present in other <acronym class="acronym">SQL</acronym> database management systems, and in many cases this functionality is compatible and consistent between the various implementations. </p></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="datatype-pseudo.html" title="8.21. Pseudo-Types">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="sql.html" title="Part II. The SQL Language">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="functions-logical.html" title="9.1. Logical Operators">Next</a></td></tr><tr><td width="40%" align="left" valign="top">8.21. Pseudo-Types </td><td width="20%" align="center"><a accesskey="h" href="index.html" title="PostgreSQL 18.4 Documentation">Home</a></td><td width="40%" align="right" valign="top"> 9.1. Logical Operators</td></tr></table></div></body></html>