PostgreSQL学习篇9.2 数值类型

数值类型解释
Postgresql中的所有数值类型及其解释:
类型名称 存储空间 描述
smallint 2字节 小范围整数。Oracle中没有此类型,使用number代替
int或integer 4字节 常用的整数。Oracle中的integer等效于number(38),与此类型的意义不同
bigint 8字节 大范围的整数。Oracle中没有此类型,使用number代替。
numeric或decimal 变长 用户声明的精度,精确。注意Oracle中叫number,与PG中名称不一致。
real 4字节 变精度,不精确。
double precision 8字节 变精度,不精确。
serial 4字节 自增整数。
bigserial 8字节 大范围的自增整数。


整数类型
整数类型有三种:smallint、int、bigint
int、integer、int4等效;int2、smallint等效;bigint、int8等效。

精确的小数类型
精确的小树类型可用numeric、numeric(m,n)、numeric(m)表示。
numeric与decimal等效,可以存储最多1000位精度的数字,并且可以进行准确的计算。适合货币金额和其他要求精确计算的场合。不过,numeric类型上的算术运算比证书类型或浮点数类型慢很多(类似于Oracle里面的number,但是,Oracle中int相当于number(m,0))。

示例:
postgres=# create table test(col1 numeric(3),col2 numeric(3,0),col3 numeric(3,2),col4 numeric);
CREATE TABLE
postgres=#
postgres=# insert into test values (2,2,2.222,2.222);
INSERT 0 1
postgres=# select * from test;
 col1 | col2 | col3 | col4 
------+------+------+-------
    2 |    2 | 2.22 | 2.222
(1 row)

postgres=# insert into test values(22,22,22.222,22.222);
ERROR:  numeric field overflow
DETAIL:  A field with precision 3,scale 2 must round to an absolute value less than 10^1.


相关文章

项目需要,有个数据需要导入,拿到手一开始以为是mysql,结果...
本文小编为大家详细介绍“怎么查看PostgreSQL数据库中所有表...
错误现象问题原因这是在远程连接时pg_hba.conf文件没有配置正...
因本地资源有限,在公共测试环境搭建了PGsql环境,从数据库本...
wamp 环境 这个提示就是说你的版本低于10了。 先打印ph...
psycopg2.OperationalError: SSL SYSCALL error: EOF detect...