gooderp18绿色标准版
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

65 linhas
6.9KB

  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!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" content="text/html; charset=UTF-8" /><title>DROP AGGREGATE</title><link rel="stylesheet" type="text/css" href="stylesheet.css" /><link rev="made" href="pgsql-docs@lists.postgresql.org" /><meta name="generator" content="DocBook XSL Stylesheets V1.79.1" /><link rel="prev" href="sql-drop-access-method.html" title="DROP ACCESS METHOD" /><link rel="next" href="sql-dropcast.html" title="DROP CAST" /></head><body><div xmlns="http://www.w3.org/TR/xhtml1/transitional" class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="5" align="center">DROP AGGREGATE</th></tr><tr><td width="10%" align="left"><a accesskey="p" href="sql-drop-access-method.html" title="DROP ACCESS METHOD">Prev</a> </td><td width="10%" align="left"><a accesskey="u" href="sql-commands.html" title="SQL Commands">Up</a></td><th width="60%" align="center">SQL Commands</th><td width="10%" align="right"><a accesskey="h" href="index.html" title="PostgreSQL 12.4 Documentation">Home</a></td><td width="10%" align="right"> <a accesskey="n" href="sql-dropcast.html" title="DROP CAST">Next</a></td></tr></table><hr></hr></div><div class="refentry" id="SQL-DROPAGGREGATE"><div class="titlepage"></div><a id="id-1.9.3.104.1" class="indexterm"></a><div class="refnamediv"><h2><span class="refentrytitle">DROP AGGREGATE</span></h2><p>DROP AGGREGATE — remove an aggregate function</p></div><div class="refsynopsisdiv"><h2>Synopsis</h2><pre class="synopsis">
  3. DROP AGGREGATE [ IF EXISTS ] <em class="replaceable"><code>name</code></em> ( <em class="replaceable"><code>aggregate_signature</code></em> ) [, ...] [ CASCADE | RESTRICT ]
  4. <span class="phrase">where <em class="replaceable"><code>aggregate_signature</code></em> is:</span>
  5. * |
  6. [ <em class="replaceable"><code>argmode</code></em> ] [ <em class="replaceable"><code>argname</code></em> ] <em class="replaceable"><code>argtype</code></em> [ , ... ] |
  7. [ [ <em class="replaceable"><code>argmode</code></em> ] [ <em class="replaceable"><code>argname</code></em> ] <em class="replaceable"><code>argtype</code></em> [ , ... ] ] ORDER BY [ <em class="replaceable"><code>argmode</code></em> ] [ <em class="replaceable"><code>argname</code></em> ] <em class="replaceable"><code>argtype</code></em> [ , ... ]
  8. </pre></div><div class="refsect1" id="id-1.9.3.104.5"><h2>Description</h2><p>
  9. <code class="command">DROP AGGREGATE</code> removes an existing
  10. aggregate function. To execute this command the current
  11. user must be the owner of the aggregate function.
  12. </p></div><div class="refsect1" id="id-1.9.3.104.6"><h2>Parameters</h2><div class="variablelist"><dl class="variablelist"><dt><span class="term"><code class="literal">IF EXISTS</code></span></dt><dd><p>
  13. Do not throw an error if the aggregate does not exist. A notice is issued
  14. in this case.
  15. </p></dd><dt><span class="term"><em class="replaceable"><code>name</code></em></span></dt><dd><p>
  16. The name (optionally schema-qualified) of an existing aggregate function.
  17. </p></dd><dt><span class="term"><em class="replaceable"><code>argmode</code></em></span></dt><dd><p>
  18. The mode of an argument: <code class="literal">IN</code> or <code class="literal">VARIADIC</code>.
  19. If omitted, the default is <code class="literal">IN</code>.
  20. </p></dd><dt><span class="term"><em class="replaceable"><code>argname</code></em></span></dt><dd><p>
  21. The name of an argument.
  22. Note that <code class="command">DROP AGGREGATE</code> does not actually pay
  23. any attention to argument names, since only the argument data
  24. types are needed to determine the aggregate function's identity.
  25. </p></dd><dt><span class="term"><em class="replaceable"><code>argtype</code></em></span></dt><dd><p>
  26. An input data type on which the aggregate function operates.
  27. To reference a zero-argument aggregate function, write <code class="literal">*</code>
  28. in place of the list of argument specifications.
  29. To reference an ordered-set aggregate function, write
  30. <code class="literal">ORDER BY</code> between the direct and aggregated argument
  31. specifications.
  32. </p></dd><dt><span class="term"><code class="literal">CASCADE</code></span></dt><dd><p>
  33. Automatically drop objects that depend on the aggregate function
  34. (such as views using it),
  35. and in turn all objects that depend on those objects
  36. (see <a class="xref" href="ddl-depend.html" title="5.14. Dependency Tracking">Section 5.14</a>).
  37. </p></dd><dt><span class="term"><code class="literal">RESTRICT</code></span></dt><dd><p>
  38. Refuse to drop the aggregate function if any objects depend on
  39. it. This is the default.
  40. </p></dd></dl></div></div><div class="refsect1" id="id-1.9.3.104.7"><h2>Notes</h2><p>
  41. Alternative syntaxes for referencing ordered-set aggregates
  42. are described under <a class="xref" href="sql-alteraggregate.html" title="ALTER AGGREGATE"><span class="refentrytitle">ALTER AGGREGATE</span></a>.
  43. </p></div><div class="refsect1" id="id-1.9.3.104.8"><h2>Examples</h2><p>
  44. To remove the aggregate function <code class="literal">myavg</code> for type
  45. <code class="type">integer</code>:
  46. </p><pre class="programlisting">
  47. DROP AGGREGATE myavg(integer);
  48. </pre><p>
  49. </p><p>
  50. To remove the hypothetical-set aggregate function <code class="literal">myrank</code>,
  51. which takes an arbitrary list of ordering columns and a matching list
  52. of direct arguments:
  53. </p><pre class="programlisting">
  54. DROP AGGREGATE myrank(VARIADIC "any" ORDER BY VARIADIC "any");
  55. </pre><p>
  56. </p><p>
  57. To remove multiple aggregate functions in one command:
  58. </p><pre class="programlisting">
  59. DROP AGGREGATE myavg(integer), myavg(bigint);
  60. </pre></div><div class="refsect1" id="id-1.9.3.104.9"><h2>Compatibility</h2><p>
  61. There is no <code class="command">DROP AGGREGATE</code> statement in the SQL
  62. standard.
  63. </p></div><div class="refsect1" id="id-1.9.3.104.10"><h2>See Also</h2><span class="simplelist"><a class="xref" href="sql-alteraggregate.html" title="ALTER AGGREGATE"><span class="refentrytitle">ALTER AGGREGATE</span></a>, <a class="xref" href="sql-createaggregate.html" title="CREATE AGGREGATE"><span class="refentrytitle">CREATE AGGREGATE</span></a></span></div></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="sql-drop-access-method.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="sql-commands.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="sql-dropcast.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">DROP ACCESS METHOD </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> DROP CAST</td></tr></table></div></body></html>
上海开阖软件有限公司 沪ICP备12045867号-1