博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PostgreSQL数值类型--浮点类型和序列
阅读量:5980 次
发布时间:2019-06-20

本文共 3727 字,大约阅读时间需要 12 分钟。

hot3.png

PostgreSQL包括整数类型和浮点数类型。

整数类型包括3种,分别是smallint、int和bigint。别名分别是int2、int(int4)和int8.常用数据类型是int(integer)。

浮点类型分为精确浮点数类型numeric和不精确浮点数类型real(单精度浮点数据类型)和 double precision(双精度浮点数据类型)。

精确浮点数类型可以用numeric(precision, scale)表示。

精度(precision)必须是正值,标度(scale)为零或正值。类型numeric和decimal等价,都符合SQL标准。 numeric不带精度和标度,则系统使用任意精度,不会超过数据库系统储存范围。创建表显示声明精度最大值为1000。

numeric(precision, 0)等价于numeric(precision)。

---不限定精度和标度postgres=# create table testdecimal(id int,testvalue decimal);CREATE TABLEpostgres=# insert into testdecimal values(1,777777777.77777777);INSERT 0 1postgres=# insert into testdecimal values(1,777777777.7777777788888888888888);INSERT 0 1postgres=# select * from testdecimal; id |            testvalue----+----------------------------------  1 |               777777777.77777777  1 | 777777777.7777777788888888888888(2 行记录)postgres=#---限定精度postgres=# create table testnumeric(id int,testnumeric numeric(3));CREATE TABLEpostgres=# insert into testnumeric values(1,2.777);INSERT 0 1postgres=#postgres=#postgres=# insert into testnumeric values(1,2.7777);INSERT 0 1postgres=# insert into testnumeric values(1,2.77777);INSERT 0 1postgres=# select * from testnumeric; id | testnumeric----+-------------  1 |           3  1 |           3  1 |           3(3 行记录)---限定标度postgres=# create table testnumeric(id int,testnumeric numeric(2,2));CREATE TABLEpostgres=# insert into testnumeric values(1,0);INSERT 0 1postgres=# insert into testnumeric values(1,0.1);INSERT 0 1postgres=# insert into testnumeric values(1,1.1);错误:  数字字段溢出描述:  精度为2,范围是2的字段必须四舍五入到小于1的绝对值.postgres=#

根据查询结果可知,不限制精度和标度,数据库系统会“原样储存”,限定精度,将导致四舍五入运算。限定标度,插入超范围数值将导致错误。

numeric类型允许特殊值NaN, 表示"不是一个数字(not a number)"。插入NaN时需要使用单引号,不区分大小写。PostgreSQL把NaN值视为相等,并且比所有非NaN值都要大。

---练习NaN使用。postgres=# create table testnumeric(id int,testnumeric numeric);CREATE TABLEpostgres=# insert into testnumeric values(2,'NaN');INSERT 0 1postgres=# insert into testnumeric values(2,'Nan');INSERT 0 1postgres=# insert into testnumeric values(2,'nan');INSERT 0 1postgres=# select * from testnumeric; id | testnumeric----+-------------  2 |         NaN  2 |         NaN  2 |         NaN(3 行记录)postgres=# select 'NaN'::decimal >'Nan'::decimal; ?column?---------- f(1 行记录)postgres=# select 'NaN'::decimal <'Nan'::decimal; ?column?---------- f(1 行记录)postgres=# select 'NaN'::decimal ='Nan'::decimal; ?column?---------- t(1 行记录)

浮点数据类型分为real(单精度浮点数据类型)和 double precision(双精度浮点数据类型),都是不准确和变精度数据类型。不准确意味着某些值不能被正确转换或被近似处理,在检索或储存时出现缺失,如何处理本文不再详加讨论。不过我们需要注意以下几点

1、要求精度数据(例如货币)使用numeric数据类型。

2、使用不精确可变精度数据类型需要详细评估。

3、用两个浮点数值进行等值比较不可能总是按照期望地进行。

不精确可变精度浮点数据类型除支持一般浮点数以外,还支持3个特殊值,分别是infinity,-infinity和NaN。

严格意义来讲,序列(serial)不是数据类型,只是为表示序数方便所创造。

---创建序列postgres=# create table testserial (id serial);CREATE TABLEpostgres=#---另一种等价创建序列postgres=# create sequence testserial_id_sequence;CREATE SEQUENCEpostgres=#postgres=# create table testserial(id int default nextval('testserial_id_sequence'));CREATE TABLEpostgres=#postgres=# alter sequence testserial_id_sequence owned by testserial.id;ALTER SEQUENCEpostgres=#

数据类型serial和serial4等效。当预期序号系列超过2^31时,使用bigserial(serial8)。

使用序列时应避免以下情况。

postgres=# drop table testserial;DROP TABLEpostgres=# create table testserial(id serial4,name text);CREATE TABLEpostgres=# insert into testserial values(1,'Tom'),(100,'Bill'),(2,'Lily');INSERT 0 3postgres=#postgres=# select id , name from testserial; id  | name-----+------   1 | Tom 100 | Bill   2 | Lily(3 行记录)postgres=#

建议使用

postgres=# insert into testserial(name) values('Tom'),('Bill'),('Lily');INSERT 0 3postgres=# select id , name from testserial; id  | name-----+------   1 | Tom 100 | Bill   2 | Lily   1 | Tom   2 | Bill   3 | Lily(6 行记录)postgres=#

更多细节,建议参考PostgreSQL手册。

转载于:https://my.oschina.net/u/1011130/blog/1563660

你可能感兴趣的文章
基本安装lnmp环境
查看>>
logstash消费阿里云kafka消息
查看>>
Oracle——条件控制语句
查看>>
day-6 and day-7:面向对象
查看>>
CSU Double Shortest Paths 湖南省第十届省赛
查看>>
webgl像机世界
查看>>
php正则怎么使用(最全最细致)
查看>>
javascript数学运算符
查看>>
LC.155. Min Stack(非优化,两个stack 同步 + -)
查看>>
交互设计[3]--点石成金
查看>>
SCCM TP4部署Office2013
查看>>
redis主从配置<转>
查看>>
bootloader功能介绍/时钟初始化设置/串口工作原理/内存工作原理/NandFlash工作原理...
查看>>
利用console控制台调试php代码
查看>>
讲解sed用法入门帖子
查看>>
Linux 内核已支持苹果
查看>>
shell脚本逻辑判断,文件目录属性判断,if,case用法
查看>>
【二叉树系列】二叉树课程大作业
查看>>
ASP.NET Core 2 学习笔记(三)中间件
查看>>
hbase region split源码分析
查看>>