1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>DROP TYPE</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<link rev="made" href="pgsql-docs@postgresql.org">
<meta name="generator" content="DocBook XSL Stylesheets V1.70.0">
<link rel="start" href="index.html" title="PostgreSQL 8.1.4 Documentation">
<link rel="up" href="sql-commands.html" title="SQL Commands">
<link rel="prev" href="sql-droptrigger.html" title="DROP TRIGGER">
<link rel="next" href="sql-dropuser.html" title="DROP USER">
<link rel="copyright" href="ln-legalnotice.html" title="Legal Notice">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en">
<a name="sql-droptype"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2>Name</h2>
<p>DROP TYPE — remove a data type</p>
</div>
<a name="id773245"></a><div class="refsynopsisdiv">
<h2>Synopsis</h2>
<pre class="synopsis">DROP TYPE <em class="replaceable"><code>name</code></em> [, ...] [ CASCADE | RESTRICT ]</pre>
</div>
<div class="refsect1" lang="en">
<a name="id773269"></a><h2>Description</h2>
<p> <code class="command">DROP TYPE</code> will remove a user-defined data type.
Only the owner of a type can remove it.
</p>
</div>
<div class="refsect1" lang="en">
<a name="id773283"></a><h2>Parameters</h2>
<div class="variablelist"><dl>
<dt><span class="term"><em class="replaceable"><code>name</code></em></span></dt>
<dd><p> The name (optionally schema-qualified) of the data type to remove.
</p></dd>
<dt><span class="term"><code class="literal">CASCADE</code></span></dt>
<dd><p> Automatically drop objects that depend on the type (such as
table columns, functions, operators).
</p></dd>
<dt><span class="term"><code class="literal">RESTRICT</code></span></dt>
<dd><p> Refuse to drop the type if any objects depend on it. This is
the default.
</p></dd>
</dl></div>
</div>
<div class="refsect1" lang="en">
<a name="sql-droptype-examples"></a><h2>Examples</h2>
<p> To remove the data type <code class="type">box</code>:
</p>
<pre class="programlisting">DROP TYPE box;</pre>
<p>
</p>
</div>
<div class="refsect1" lang="en">
<a name="sql-droptype-compatibility"></a><h2>Compatibility</h2>
<p> This command is similar to the corresponding command in the SQL
standard, but note that the <code class="command">CREATE TYPE</code> command
and the data type extension mechanisms in
<span class="productname">PostgreSQL</span> differ from the SQL standard.
</p>
</div>
<div class="refsect1" lang="en">
<a name="sql-droptype-see-also"></a><h2>See Also</h2>
<span class="simplelist"><a href="sql-createtype.html">CREATE TYPE</a>, <a href="sql-altertype.html">ALTER TYPE</a></span>
</div>
</div></body>
</html>
|