|
|
| · · · · · · · | |
pgAdmin 1.6 online documentation5.2. Default ValuesA column can be assigned a default value. When a new row is created and no values are specified for some of the columns, those columns will be filled with their respective default values. A data manipulation command can also request explicitly that a column be set to its default value, without having to know what that value is. (Details about data manipulation commands are in Chapter 6, Data Manipulation.) If no default value is declared explicitly, the default value is the null value. This usually makes sense because a null value can be considered to represent unknown data. In a table definition, default values are listed after the column data type. For example: CREATE TABLE products (
product_no integer,
name text,
price numeric DEFAULT 9.99
);
The default value may be an expression, which will be
evaluated whenever the default value is inserted
(not when the table is created). A common example
is that a CREATE TABLE products (
product_no integer DEFAULT nextval('products_product_no_seq'),
...
);
where the CREATE TABLE products (
product_no SERIAL,
...
);
The |