]> granicus.if.org Git - postgresql/blob - doc/src/sgml/ref/drop_group.sgml
Add support for piping COPY to/from an external program.
[postgresql] / doc / src / sgml / ref / drop_group.sgml
1 <!--
2 doc/src/sgml/ref/drop_group.sgml
3 PostgreSQL documentation
4 -->
5
6 <refentry id="SQL-DROPGROUP">
7  <refmeta>
8   <refentrytitle>DROP GROUP</refentrytitle>
9   <manvolnum>7</manvolnum>
10   <refmiscinfo>SQL - Language Statements</refmiscinfo>
11  </refmeta>
12
13  <refnamediv>
14   <refname>DROP GROUP</refname>
15   <refpurpose>remove a database role</refpurpose>
16  </refnamediv>
17
18  <indexterm zone="sql-dropgroup">
19   <primary>DROP GROUP</primary>
20  </indexterm>
21
22  <refsynopsisdiv>
23 <synopsis>
24 DROP GROUP [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable> [, ...]
25 </synopsis>
26  </refsynopsisdiv>
27
28  <refsect1>
29   <title>Description</title>
30
31   <para>
32    <command>DROP GROUP</command> is now an alias for
33    <xref linkend="sql-droprole">.
34   </para>
35  </refsect1>
36
37  <refsect1>
38   <title>Compatibility</title>
39
40   <para>
41    There is no <command>DROP GROUP</command> statement in the SQL standard.
42   </para>
43  </refsect1>
44
45  <refsect1>
46   <title>See Also</title>
47
48   <simplelist type="inline">
49    <member><xref linkend="sql-droprole"></member>
50   </simplelist>
51  </refsect1>
52
53 </refentry>