1<!--
2doc/src/sgml/ref/drop_group.sgml
3PostgreSQL documentation
4-->
5
6<refentry id="SQL-DROPGROUP">
7 <indexterm zone="sql-dropgroup">
8  <primary>DROP GROUP</primary>
9 </indexterm>
10
11 <refmeta>
12  <refentrytitle>DROP GROUP</refentrytitle>
13  <manvolnum>7</manvolnum>
14  <refmiscinfo>SQL - Language Statements</refmiscinfo>
15 </refmeta>
16
17 <refnamediv>
18  <refname>DROP GROUP</refname>
19  <refpurpose>remove a database role</refpurpose>
20 </refnamediv>
21
22 <refsynopsisdiv>
23<synopsis>
24DROP 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>
54