Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 안드로이드 웹뷰
- 파이썬
- 하이퍼레저 패브릭
- 파이썬 머신러닝
- 스칼라 강좌
- play2 강좌
- CORDA
- 파이썬 데이터분석
- Play2
- 스칼라 동시성
- akka 강좌
- 스위프트
- 블록체인
- Actor
- 엔터프라이즈 블록체인
- Play2 로 웹 개발
- Hyperledger fabric gossip protocol
- Adapter 패턴
- 이더리움
- 파이썬 동시성
- 스칼라
- hyperledger fabric
- Golang
- Akka
- 그라파나
- 주키퍼
- 플레이프레임워크
- 하이브리드앱
- play 강좌
- 파이썬 강좌
Archives
- Today
- Total
HAMA 블로그
PostgreSQL 컬럼 타입들 본문
Data Types
Name | Aliases | Description |
---|---|---|
bigint | int8 | signed eight-byte integer |
bigserial | serial8 | autoincrementing eight-byte integer |
bit [ (n) ] | fixed-length bit string | |
bit varying [ (n) ] | varbit | variable-length bit string |
boolean | bool | logical Boolean (true/false) |
box | rectangular box on a plane | |
bytea | binary data ("byte array") | |
character [ (n) ] | char [ (n) ] | fixed-length character string |
character varying [ (n) ] | varchar [ (n) ] | variable-length character string |
cidr | IPv4 or IPv6 network address | |
circle | circle on a plane | |
date | calendar date (year, month, day) | |
double precision | float8 | double precision floating-point number (8 bytes) |
inet | IPv4 or IPv6 host address | |
integer | int, int4 | signed four-byte integer |
interval [ fields ] [ (p) ] | time span | |
json | JSON data | |
line | infinite line on a plane | |
lseg | line segment on a plane | |
macaddr | MAC (Media Access Control) address | |
money | currency amount | |
numeric [ (p, s) ] | decimal [ (p, s) ] | exact numeric of selectable precision |
path | geometric path on a plane | |
point | geometric point on a plane | |
polygon | closed geometric path on a plane | |
real | float4 | single precision floating-point number (4 bytes) |
smallint | int2 | signed two-byte integer |
smallserial | serial2 | autoincrementing two-byte integer |
serial | serial4 | autoincrementing four-byte integer |
text | variable-length character string | |
time [ (p) ] [ without time zone ] | time of day (no time zone) | |
time [ (p) ] with time zone | timetz | time of day, including time zone |
timestamp [ (p) ] [ without time zone ] | date and time (no time zone) | |
timestamp [ (p) ] with time zone | timestamptz | date and time, including time zone |
tsquery | text search query | |
tsvector | text search document | |
txid_snapshot | user-level transaction ID snapshot | |
uuid | universally unique identifier | |
xml | XML data |
'RDBMS (PostgreSQL)' 카테고리의 다른 글
JDBC 트랜잭션 (0) | 2015.07.30 |
---|---|
트랜잭션 인사이드 (0) | 2015.07.01 |
PostgreSQL 조인 (0) | 2015.05.13 |
Efficient Use of PostgreSQL Indexes (0) | 2015.05.13 |
PostgreSQL 날짜&시간 사용하기 (0) | 2015.05.13 |
Comments