doc: ALTER DEFAULT PRIVILEGES does not affect inherited roles
[pgsql.git] / doc / src / sgml / ref / drop_group.sgml
blobeb7dc182c82b395077f78eaf79bea22a9ddd8b2e
1 <!--
2 doc/src/sgml/ref/drop_group.sgml
3 PostgreSQL documentation
4 -->
6 <refentry id="sql-dropgroup">
7 <indexterm zone="sql-dropgroup">
8 <primary>DROP GROUP</primary>
9 </indexterm>
11 <refmeta>
12 <refentrytitle>DROP GROUP</refentrytitle>
13 <manvolnum>7</manvolnum>
14 <refmiscinfo>SQL - Language Statements</refmiscinfo>
15 </refmeta>
17 <refnamediv>
18 <refname>DROP GROUP</refname>
19 <refpurpose>remove a database role</refpurpose>
20 </refnamediv>
22 <refsynopsisdiv>
23 <synopsis>
24 DROP GROUP [ IF EXISTS ] <replaceable class="parameter">name</replaceable> [, ...]
25 </synopsis>
26 </refsynopsisdiv>
28 <refsect1>
29 <title>Description</title>
31 <para>
32 <command>DROP GROUP</command> is now an alias for
33 <link linkend="sql-droprole"><command>DROP ROLE</command></link>.
34 </para>
35 </refsect1>
37 <refsect1>
38 <title>Compatibility</title>
40 <para>
41 There is no <command>DROP GROUP</command> statement in the SQL standard.
42 </para>
43 </refsect1>
45 <refsect1>
46 <title>See Also</title>
48 <simplelist type="inline">
49 <member><xref linkend="sql-droprole"/></member>
50 </simplelist>
51 </refsect1>
53 </refentry>