PostgreSQL学习(5) - 数据类型之基本数据类型

第五章: 数据类型之基本数据类型

1. 数字类型
--smallint/integer/bigint:integer最为常用
--real/double precision/numeric:real为单精度,Numeric计算准确,但计算较慢,
--serial:用于生成唯一标识符

2. 字符类型
--varchar(80):只存储实际长度
--char(80):长度不足80,用空格填满
--text:可存储任意长度

3. 日期和时间
--time: 包含时间
--date: 包含日期
--timestamp: 包含日期和时间
--interval:时间间隔

4. 文本搜索类型
--tsvector类型(存储于表中的一种文本,具有特定的格式,便于搜索时进行文本匹配)
--tsquery类型(一种文本格式,数据库搜索时,用于和数据库表中的tsvector类型进行匹配)

5. 类型转换
/*
CREATE VIEW product_view as
    SELECT product_name, product_price::integer as price          -- 类型转换(::)
        FROM customer_order;
*/

你可能感兴趣的:(数据库)