~ubuntu-branches/ubuntu/natty/postgresql-8.4/natty-updates

« back to all changes in this revision

Viewing changes to doc/src/sgml/ref/drop_group.sgml

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-03-20 12:00:13 UTC
  • Revision ID: james.westby@ubuntu.com-20090320120013-hogj7egc5mjncc5g
Tags: upstream-8.4~0cvs20090328
ImportĀ upstreamĀ versionĀ 8.4~0cvs20090328

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--
 
2
$PostgreSQL$
 
3
PostgreSQL documentation
 
4
-->
 
5
 
 
6
<refentry id="SQL-DROPGROUP">
 
7
 <refmeta>
 
8
  <refentrytitle id="SQL-DROPGROUP-TITLE">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" endterm="sql-droprole-title">.
 
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" endterm="sql-droprole-title"></member>
 
50
  </simplelist>
 
51
 </refsect1>
 
52
 
 
53
</refentry>