ddl.sgml
来自「PostgreSQL 8.1.4的源码 适用于Linux下的开源数据库系统」· SGML 代码 · 共 1,955 行 · 第 1/5 页
SGML
1,955 行
<para> It should be noted that a check constraint is satisfied if the check expression evaluates to true or the null value. Since most expressions will evaluate to the null value if any operand is null, they will not prevent null values in the constrained columns. To ensure that a column does not contain null values, the not-null constraint described in the next section can be used. </para> <para> Check constraints can be useful for enhancing the performance of partitioned tables. For details see <xref linkend="ddl-partitioning">. </para> </sect2> <sect2> <title>Not-Null Constraints</title> <indexterm> <primary>not-null constraint</primary> </indexterm> <indexterm> <primary>constraint</primary> <secondary>NOT NULL</secondary> </indexterm> <para> A not-null constraint simply specifies that a column must not assume the null value. A syntax example:<programlisting>CREATE TABLE products ( product_no integer <emphasis>NOT NULL</emphasis>, name text <emphasis>NOT NULL</emphasis>, price numeric);</programlisting> </para> <para> A not-null constraint is always written as a column constraint. A not-null constraint is functionally equivalent to creating a check constraint <literal>CHECK (<replaceable>column_name</replaceable> IS NOT NULL)</literal>, but in <productname>PostgreSQL</productname> creating an explicit not-null constraint is more efficient. The drawback is that you cannot give explicit names to not-null constraints created this way. </para> <para> Of course, a column can have more than one constraint. Just write the constraints one after another:<programlisting>CREATE TABLE products ( product_no integer NOT NULL, name text NOT NULL, price numeric NOT NULL CHECK (price > 0));</programlisting> The order doesn't matter. It does not necessarily determine in which order the constraints are checked. </para> <para> The <literal>NOT NULL</literal> constraint has an inverse: the <literal>NULL</literal> constraint. This does not mean that the column must be null, which would surely be useless. Instead, this simply selects the default behavior that the column may be null. The <literal>NULL</literal> constraint is not defined in the SQL standard and should not be used in portable applications. (It was only added to <productname>PostgreSQL</productname> to be compatible with some other database systems.) Some users, however, like it because it makes it easy to toggle the constraint in a script file. For example, you could start with<programlisting>CREATE TABLE products ( product_no integer NULL, name text NULL, price numeric NULL);</programlisting> and then insert the <literal>NOT</literal> key word where desired. </para> <tip> <para> In most database designs the majority of columns should be marked not null. </para> </tip> </sect2> <sect2> <title>Unique Constraints</title> <indexterm> <primary>unique constraint</primary> </indexterm> <indexterm> <primary>constraint</primary> <secondary>unique</secondary> </indexterm> <para> Unique constraints ensure that the data contained in a column or a group of columns is unique with respect to all the rows in the table. The syntax is<programlisting>CREATE TABLE products ( product_no integer <emphasis>UNIQUE</emphasis>, name text, price numeric);</programlisting> when written as a column constraint, and<programlisting>CREATE TABLE products ( product_no integer, name text, price numeric, <emphasis>UNIQUE (product_no)</emphasis>);</programlisting> when written as a table constraint. </para> <para> If a unique constraint refers to a group of columns, the columns are listed separated by commas:<programlisting>CREATE TABLE example ( a integer, b integer, c integer, <emphasis>UNIQUE (a, c)</emphasis>);</programlisting> This specifies that the combination of values in the indicated columns is unique across the whole table, though any one of the columns need not be (and ordinarily isn't) unique. </para> <para> You can assign your own name for a unique constraint, in the usual way:<programlisting>CREATE TABLE products ( product_no integer <emphasis>CONSTRAINT must_be_different</emphasis> UNIQUE, name text, price numeric);</programlisting> </para> <indexterm> <primary>null value</primary> <secondary sortas="unique constraints">with unique constraints</secondary> </indexterm> <para> In general, a unique constraint is violated when there are two or more rows in the table where the values of all of the columns included in the constraint are equal. However, null values are not considered equal in this comparison. That means even in the presence of a unique constraint it is possible to store duplicate rows that contain a null value in at least one of the constrained columns. This behavior conforms to the SQL standard, but we have heard that other SQL databases may not follow this rule. So be careful when developing applications that are intended to be portable. </para> </sect2> <sect2> <title>Primary Keys</title> <indexterm> <primary>primary key</primary> </indexterm> <indexterm> <primary>constraint</primary> <secondary>primary key</secondary> </indexterm> <para> Technically, a primary key constraint is simply a combination of a unique constraint and a not-null constraint. So, the following two table definitions accept the same data:<programlisting>CREATE TABLE products ( product_no integer UNIQUE NOT NULL, name text, price numeric);</programlisting><programlisting>CREATE TABLE products ( product_no integer <emphasis>PRIMARY KEY</emphasis>, name text, price numeric);</programlisting> </para> <para> Primary keys can also constrain more than one column; the syntax is similar to unique constraints:<programlisting>CREATE TABLE example ( a integer, b integer, c integer, <emphasis>PRIMARY KEY (a, c)</emphasis>);</programlisting> </para> <para> A primary key indicates that a column or group of columns can be used as a unique identifier for rows in the table. (This is a direct consequence of the definition of a primary key. Note that a unique constraint does not, by itself, provide a unique identifier because it does not exclude null values.) This is useful both for documentation purposes and for client applications. For example, a GUI application that allows modifying row values probably needs to know the primary key of a table to be able to identify rows uniquely. </para> <para> A table can have at most one primary key (while it can have many unique and not-null constraints). Relational database theory dictates that every table must have a primary key. This rule is not enforced by <productname>PostgreSQL</productname>, but it is usually best to follow it. </para> </sect2> <sect2 id="ddl-constraints-fk"> <title>Foreign Keys</title> <indexterm> <primary>foreign key</primary> </indexterm> <indexterm> <primary>constraint</primary> <secondary>foreign key</secondary> </indexterm> <indexterm> <primary>referential integrity</primary> </indexterm> <para> A foreign key constraint specifies that the values in a column (or a group of columns) must match the values appearing in some row of another table. We say this maintains the <firstterm>referential integrity</firstterm> between two related tables. </para> <para> Say you have the product table that we have used several times already:<programlisting>CREATE TABLE products ( product_no integer PRIMARY KEY, name text, price numeric);</programlisting> Let's also assume you have a table storing orders of those products. We want to ensure that the orders table only contains orders of products that actually exist. So we define a foreign key constraint in the orders table that references the products table:<programlisting>CREATE TABLE orders ( order_id integer PRIMARY KEY, product_no integer <emphasis>REFERENCES products (product_no)</emphasis>, quantity integer);</programlisting> Now it is impossible to create orders with <structfield>product_no</structfield> entries that do not appear in the products table. </para> <para> We say that in this situation the orders table is the <firstterm>referencing</firstterm> table and the products table is the <firstterm>referenced</firstterm> table. Similarly, there are referencing and referenced columns. </para> <para> You can also shorten the above command to<programlisting>CREATE TABLE orders ( order_id integer PRIMARY KEY, product_no integer <emphasis>REFERENCES products</emphasis>, quantity integer);</programlisting> because in absence of a column list the primary key of the referenced table is used as the referenced column(s). </para> <para> A foreign key can also constrain and reference a group of columns. As usual, it then needs to be written in table constraint form. Here is a contrived syntax example:<programlisting>CREATE TABLE t1 ( a integer PRIMARY KEY, b integer, c integer, <emphasis>FOREIGN KEY (b, c) REFERENCES other_table (c1, c2)</emphasis>);</programlisting> Of course, the number and type of the constrained columns need to match the number and type of the referenced columns. </para> <para> You can assign your own name for a foreign key constraint, in the usual way. </para> <para> A table can contain more than one foreign key constraint. This is used to implement many-to-many relationships between tables. Say you have tables about products and orders, but now you want to allow one order to contain possibly many products (which the structure above did not allow). You could use this table structure:<programlisting>CREATE TABLE products ( product_no integer PRIMARY KEY, name text, price numeric);CREATE TABLE orders ( order_id integer PRIMARY KEY, shipping_address text, ...);CREATE TABLE order_items ( product_no integer REFERENCES products, order_id integer REFERENCES orders, quantity integer, PRIMARY KEY (product_no, order_id));</programlisting> Notice that the primary key overlaps with the foreign keys in the last table. </para> <indexterm> <primary>CASCADE</primary> <secondary>foreign key action</secondary> </indexterm> <indexterm> <primary>RESTRICT</primary> <secondary>foreign key action</secondary> </indexterm> <para> We know that the foreign keys disallow creation of orders that do not relate to any products. But what if a product is removed after an order is created that references it? SQL allows you to handle that as well. Intuitively, we have a few options: <itemizedlist spacing="compact"> <listitem><para>Disallow deleting a referenced product</para></listitem> <listitem><para>Delete the orders as well</para></listitem> <listitem><para>Something else?</para></listitem> </itemizedlist> </para> <para> To illustrate this, let's implement the following policy on the many-to-many relationship example above: when someone wants to remove a product that is still referenced by an order (via <literal>order_items</literal>), we disallow it. If someone
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?