官术网_书友最值得收藏!

Numeric types

The following table shows the various numeric types:

 

PostgreSQL supports various mathematical operators and functions, such as geometric functions and bitwise operations. The smallint data type can be used to save disk space, while bigint can be used if the integer range isn't sufficient.

Similar to the C language, the result of an integer expression is also an integer. So, the results of the mathematical operations 3/2 and 1/3 are 1 and 0respectively. Thus, the fractional part is always truncated. Unlike in the C language, PostgreSQL uses the round-half-to-even algorithm when casting a double value to INT:

postgres=# SELECT
CAST(5.9 AS INT) AS "CAST (5.9 AS INT)",
CAST(5.1 AS INT) AS "CAST(5.1 AS INT)",
CAST(-23.5 AS INT) AS "CAST(-23.5 AS INT)" ,
5.5::INT AS "5.5::INT";

CAST (5.9 AS INT) | CAST(5.1 AS INT) | CAST(-23.5 AS INT) | 5.5::INT
-------------------+------------------+--------------------+----------
6 | 5 | -24 | 6
(1 row)

postgres=# SELECT 2/3 AS "2/3", 1/3 AS "1/3", 3/2 AS "3/2";
2/3 | 1/3 | 3/2
-----+-----+-----
0 | 0 | 1
(1 row)

The numeric and decimal types are recommended for storing monetary and other amounts where precision is required. There are three forms of definition for a numeric or decimal value:

  • Numeric (precision, scale)
  • Numeric (precision)
  • Numeric

Precision is the total number of digits, while scale is the number of digits of the fraction part. For example, the number 12.344 has a precision of 5 and a scale of 3. If a numeric type is used to define a column type without precision or scale, the column can store any number with any precision and scale.

If precision isn't required, don't use the numeric and decimal types. Operations on numeric types are slower than floats and double precision.

Floating-point and double precision are inexact; this means that the values in some cases can't be represented in the internal binary format, and are stored as approximations. The full documentation about numeric data types can be found at https://www.postgresql.org/docs/current/static/datatype-numeric.html.

Serial types, namely smallserial, serial, and bigserial, are wrappers on top of smallint, integer, and bigint, respectively. serial types aren't true data types. They're often used as surrogate keys, and by default, they aren't allowed to have a null value. The serial type utilizes the sequences behind the scene. A sequence is a database object that's used to generate sequences by specifying the minimum, maximum, and increment values. For example, the following code creates a table customer with a customer_id column as serial:

CREATE TABLE customer (
customer_id SERIAL
);

The preceding code create a sequence and a table. It will set the default value of the customer_id column to the sequence's next function. Finally, it will change the ownership of the sequence to the column. To verify this, let's describe the created objects:

postgres=# \d customer
Table "public.customer"
Column | Type | Collation | Nullable | Default
-------------+---------+-----------+----------+-----------------------------------------------
customer_id | integer | | not null | nextval('customer_customer_id_seq'::regclass)
postgres=# \d customer_customer_id_seq
Sequence "public.customer_customer_id_seq"
Type | Start | Minimum | Maximum | Increment | Cycles? | Cache
---------+-------+---------+------------+-----------+---------+-------
integer | 1 | 1 | 2147483647 | 1 | no | 1
Owned by: public.customer.customer_id

The preceding code will generate the following code behind the scenes:

CREATE SEQUENCE customer_customer_id_seq;
CREATE TABLE customer (
customer_id integer NOT NULL DEFAULT nextval('customer_customer_id_seq')
);
ALTER SEQUENCE customer_customer_id_seq OWNED BY customer.Customer_id;

When creating a column with the serial type, remember the following things:

  • A sequence will be created with the name tableName_columnName_seq. In the preceding example, the sequence name is customer_customer_id_seq.
  • The column will have a NOT NULL constraint.
  • The column will have a default value generated by the nextval() function.
  • The sequence will be owned by the column, which means that the sequence will be dropped automatically if the column is dropped.
The preceding example shows how PostgreSQL names an object if the object name isn't specified explicitly. PostgreSQL names objects using the {tablename}_{columnname(s)}_{suffix} pattern, where the pkey, key, excl, idx, fkey, and check  suffixes   stand for a primary key constraint, a unique constraint, an exclusion constraint, an index, a foreign key constraint, and a check constraint, respectively.  A common mistake when using the serial type is forgetting to grant proper permissions to the generated sequence.
In PostgreSQL, you can insert a value other than the default value into a column. When using the sequence's  nextval() function as a default value, you should respect that and use the sequence. This is important if the sequence is used as a default value for a primary column.
主站蜘蛛池模板: 当阳市| 石家庄市| 泰来县| 雷波县| 宜春市| 板桥市| 万盛区| 开封市| 法库县| 广汉市| 屯留县| 靖江市| 新乡县| 清水县| 湘阴县| 谢通门县| 孝感市| 瑞丽市| 海宁市| 临桂县| 广水市| 汝南县| 桃江县| 婺源县| 即墨市| 南丹县| 四平市| 富锦市| 碌曲县| 县级市| 怀来县| 高平市| 云南省| 安龙县| 潜江市| 锡林浩特市| 枞阳县| 长泰县| 舒城县| 景泰县| 黄大仙区|