gooderp18绿色标准版
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

147 行
11KB

  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>CREATE DOMAIN</title><link rel="stylesheet" type="text/css" href="stylesheet.css" /><link rev="made" href="pgsql-docs@lists.postgresql.org" /><meta name="generator" content="DocBook XSL Stylesheets V1.79.1" /><link rel="prev" href="sql-createdatabase.html" title="CREATE DATABASE" /><link rel="next" href="sql-createeventtrigger.html" title="CREATE EVENT TRIGGER" /></head><body><div xmlns="http://www.w3.org/TR/xhtml1/transitional" class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="5" align="center">CREATE DOMAIN</th></tr><tr><td width="10%" align="left"><a accesskey="p" href="sql-createdatabase.html" title="CREATE DATABASE">Prev</a> </td><td width="10%" align="left"><a accesskey="u" href="sql-commands.html" title="SQL Commands">Up</a></td><th width="60%" align="center">SQL Commands</th><td width="10%" align="right"><a accesskey="h" href="index.html" title="PostgreSQL 12.4 Documentation">Home</a></td><td width="10%" align="right"> <a accesskey="n" href="sql-createeventtrigger.html" title="CREATE EVENT TRIGGER">Next</a></td></tr></table><hr></hr></div><div class="refentry" id="SQL-CREATEDOMAIN"><div class="titlepage"></div><a id="id-1.9.3.62.1" class="indexterm"></a><div class="refnamediv"><h2><span class="refentrytitle">CREATE DOMAIN</span></h2><p>CREATE DOMAIN — define a new domain</p></div><div class="refsynopsisdiv"><h2>Synopsis</h2><pre class="synopsis">
  3. CREATE DOMAIN <em class="replaceable"><code>name</code></em> [ AS ] <em class="replaceable"><code>data_type</code></em>
  4. [ COLLATE <em class="replaceable"><code>collation</code></em> ]
  5. [ DEFAULT <em class="replaceable"><code>expression</code></em> ]
  6. [ <em class="replaceable"><code>constraint</code></em> [ ... ] ]
  7. <span class="phrase">where <em class="replaceable"><code>constraint</code></em> is:</span>
  8. [ CONSTRAINT <em class="replaceable"><code>constraint_name</code></em> ]
  9. { NOT NULL | NULL | CHECK (<em class="replaceable"><code>expression</code></em>) }
  10. </pre></div><div class="refsect1" id="id-1.9.3.62.5"><h2>Description</h2><p>
  11. <code class="command">CREATE DOMAIN</code> creates a new domain. A domain is
  12. essentially a data type with optional constraints (restrictions on
  13. the allowed set of values).
  14. The user who defines a domain becomes its owner.
  15. </p><p>
  16. If a schema name is given (for example, <code class="literal">CREATE DOMAIN
  17. myschema.mydomain ...</code>) then the domain is created in the
  18. specified schema. Otherwise it is created in the current schema.
  19. The domain name must be unique among the types and domains existing
  20. in its schema.
  21. </p><p>
  22. Domains are useful for abstracting common constraints on fields into
  23. a single location for maintenance. For example, several tables might
  24. contain email address columns, all requiring the same CHECK constraint
  25. to verify the address syntax.
  26. Define a domain rather than setting up each table's constraint
  27. individually.
  28. </p><p>
  29. To be able to create a domain, you must have <code class="literal">USAGE</code>
  30. privilege on the underlying type.
  31. </p></div><div class="refsect1" id="id-1.9.3.62.6"><h2>Parameters</h2><div class="variablelist"><dl class="variablelist"><dt><span class="term"><em class="replaceable"><code>name</code></em></span></dt><dd><p>
  32. The name (optionally schema-qualified) of a domain to be created.
  33. </p></dd><dt><span class="term"><em class="replaceable"><code>data_type</code></em></span></dt><dd><p>
  34. The underlying data type of the domain. This can include array
  35. specifiers.
  36. </p></dd><dt><span class="term"><em class="replaceable"><code>collation</code></em></span></dt><dd><p>
  37. An optional collation for the domain. If no collation is
  38. specified, the underlying data type's default collation is used.
  39. The underlying type must be collatable if <code class="literal">COLLATE</code>
  40. is specified.
  41. </p></dd><dt><span class="term"><code class="literal">DEFAULT <em class="replaceable"><code>expression</code></em></code></span></dt><dd><p>
  42. The <code class="literal">DEFAULT</code> clause specifies a default value for
  43. columns of the domain data type. The value is any
  44. variable-free expression (but subqueries are not allowed).
  45. The data type of the default expression must match the data
  46. type of the domain. If no default value is specified, then
  47. the default value is the null value.
  48. </p><p>
  49. The default expression will be used in any insert operation
  50. that does not specify a value for the column. If a default
  51. value is defined for a particular column, it overrides any
  52. default associated with the domain. In turn, the domain
  53. default overrides any default value associated with the
  54. underlying data type.
  55. </p></dd><dt><span class="term"><code class="literal">CONSTRAINT <em class="replaceable"><code>constraint_name</code></em></code></span></dt><dd><p>
  56. An optional name for a constraint. If not specified,
  57. the system generates a name.
  58. </p></dd><dt><span class="term"><code class="literal">NOT NULL</code></span></dt><dd><p>
  59. Values of this domain are prevented from being null
  60. (but see notes below).
  61. </p></dd><dt><span class="term"><code class="literal">NULL</code></span></dt><dd><p>
  62. Values of this domain are allowed to be null. This is the default.
  63. </p><p>
  64. This clause is only intended for compatibility with
  65. nonstandard SQL databases. Its use is discouraged in new
  66. applications.
  67. </p></dd><dt><span class="term"><code class="literal">CHECK (<em class="replaceable"><code>expression</code></em>)</code></span></dt><dd><p><code class="literal">CHECK</code> clauses specify integrity constraints or tests
  68. which values of the domain must satisfy.
  69. Each constraint must be an expression
  70. producing a Boolean result. It should use the key word <code class="literal">VALUE</code>
  71. to refer to the value being tested. Expressions evaluating
  72. to TRUE or UNKNOWN succeed. If the expression produces a FALSE result,
  73. an error is reported and the value is not allowed to be converted
  74. to the domain type.
  75. </p><p>
  76. Currently, <code class="literal">CHECK</code> expressions cannot contain
  77. subqueries nor refer to variables other than <code class="literal">VALUE</code>.
  78. </p><p>
  79. When a domain has multiple <code class="literal">CHECK</code> constraints,
  80. they will be tested in alphabetical order by name.
  81. (<span class="productname">PostgreSQL</span> versions before 9.5 did not honor any
  82. particular firing order for <code class="literal">CHECK</code> constraints.)
  83. </p></dd></dl></div></div><div class="refsect1" id="id-1.9.3.62.7"><h2>Notes</h2><p>
  84. Domain constraints, particularly <code class="literal">NOT NULL</code>, are checked when
  85. converting a value to the domain type. It is possible for a column that
  86. is nominally of the domain type to read as null despite there being such
  87. a constraint. For example, this can happen in an outer-join query, if
  88. the domain column is on the nullable side of the outer join. A more
  89. subtle example is
  90. </p><pre class="programlisting">
  91. INSERT INTO tab (domcol) VALUES ((SELECT domcol FROM tab WHERE false));
  92. </pre><p>
  93. The empty scalar sub-SELECT will produce a null value that is considered
  94. to be of the domain type, so no further constraint checking is applied
  95. to it, and the insertion will succeed.
  96. </p><p>
  97. It is very difficult to avoid such problems, because of SQL's general
  98. assumption that a null value is a valid value of every data type. Best practice
  99. therefore is to design a domain's constraints so that a null value is allowed,
  100. and then to apply column <code class="literal">NOT NULL</code> constraints to columns of
  101. the domain type as needed, rather than directly to the domain type.
  102. </p><p>
  103. <span class="productname">PostgreSQL</span> assumes that
  104. <code class="literal">CHECK</code> constraints' conditions are immutable, that is,
  105. they will always give the same result for the same input value. This
  106. assumption is what justifies examining <code class="literal">CHECK</code>
  107. constraints only when a value is first converted to be of a domain type,
  108. and not at other times. (This is essentially the same as the treatment
  109. of table <code class="literal">CHECK</code> constraints, as described in
  110. <a class="xref" href="ddl-constraints.html#DDL-CONSTRAINTS-CHECK-CONSTRAINTS" title="5.4.1. Check Constraints">Section 5.4.1</a>.)
  111. </p><p>
  112. An example of a common way to break this assumption is to reference a
  113. user-defined function in a <code class="literal">CHECK</code> expression, and then
  114. change the behavior of that
  115. function. <span class="productname">PostgreSQL</span> does not disallow that,
  116. but it will not notice if there are stored values of the domain type that
  117. now violate the <code class="literal">CHECK</code> constraint. That would cause a
  118. subsequent database dump and reload to fail. The recommended way to
  119. handle such a change is to drop the constraint (using <code class="command">ALTER
  120. DOMAIN</code>), adjust the function definition, and re-add the
  121. constraint, thereby rechecking it against stored data.
  122. </p></div><div class="refsect1" id="id-1.9.3.62.8"><h2>Examples</h2><p>
  123. This example creates the <code class="type">us_postal_code</code> data type and
  124. then uses the type in a table definition. A regular expression test
  125. is used to verify that the value looks like a valid US postal code:
  126. </p><pre class="programlisting">
  127. CREATE DOMAIN us_postal_code AS TEXT
  128. CHECK(
  129. VALUE ~ '^\d{5}$'
  130. OR VALUE ~ '^\d{5}-\d{4}$'
  131. );
  132. CREATE TABLE us_snail_addy (
  133. address_id SERIAL PRIMARY KEY,
  134. street1 TEXT NOT NULL,
  135. street2 TEXT,
  136. street3 TEXT,
  137. city TEXT NOT NULL,
  138. postal us_postal_code NOT NULL
  139. );
  140. </pre></div><div class="refsect1" id="SQL-CREATEDOMAIN-COMPATIBILITY"><h2>Compatibility</h2><p>
  141. The command <code class="command">CREATE DOMAIN</code> conforms to the SQL
  142. standard.
  143. </p></div><div class="refsect1" id="SQL-CREATEDOMAIN-SEE-ALSO"><h2>See Also</h2><span class="simplelist"><a class="xref" href="sql-alterdomain.html" title="ALTER DOMAIN"><span class="refentrytitle">ALTER DOMAIN</span></a>, <a class="xref" href="sql-dropdomain.html" title="DROP DOMAIN"><span class="refentrytitle">DROP DOMAIN</span></a></span></div></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="sql-createdatabase.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="sql-commands.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="sql-createeventtrigger.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">CREATE DATABASE </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> CREATE EVENT TRIGGER</td></tr></table></div></body></html>
上海开阖软件有限公司 沪ICP备12045867号-1