PostgreSQL 9 数据类型

前端之家收集整理的这篇文章主要介绍了PostgreSQL 9 数据类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

切换到Postgresql提上日程了,简单做点笔记。

摘自:http://www.postgresql.org/docs/9.0/interactive/datatype.html

Name Aliases Description
bigint int8 有符号8字节整数
bigserial serial8 自增8字节整数
bit [ (n ) ] 定长位串
bit varying [ (n ) ] varbit 变长位串
boolean bool 逻辑布尔值(true/false)
Box 平面中的矩形
bytea 二进制数据("字节数组" )
character varying [ (n ) ] varchar [ (n ) ] 变长字符串
character [ (n ) ] char [ (n ) ] 定长字符串
cidr IPv4 或 IPv6 网络地址
circle 平面中的圆
date 日历日期 (年,月,日)
double precision float8 双精度浮点数(8 字节)
inet IPv4 或 IPv6 主机地址
integer int,int4 有符号4字节整数
interval [ fields ] [ (p ) ] 时间间隔
line 平面中的无限上直线
lseg 平面中的线段
macaddr MAC 地址
money 货币金额
numeric [ (p ,s ) ] decimal [ (p ,s ) ] 可选精度的准确数字
path 平面中的几何路径
point 平面中的点
polygon 平面中的闭合几何路径
real float4 单精度浮点数 (4 字节)
smallint int2 有符号两字节整数
serial serial4 自增4字节整形
text 变长字符串
time [ (p ) ] [ without time zone ] 一天中的时间(不包括时区)
time [ (p ) ] with time zone timetz 一开中的时间,包括时区
timestamp [ (p ) ] [ without time zone ] 日期和时间、时间戳 (不包括时区)
timestamp [ (p ) ] with time zone timestamptz 日期和时间、时间戳,包括时区
tsquery 文本搜索查询
tsvector 文本搜索文档
txid_snapshot 用户级事务ID快照
uuid UUID
xml XML数据
原文链接:https://www.f2er.com/postgresql/196960.html

猜你在找的Postgre SQL相关文章