PostgreSQL学习篇9.11 几何类型

集合类型挺复杂,各种操作符各种函数。

point :平面中的点
line:直线
lseg:线段
box:矩形
path:路径,()表示闭合路径,[]表示开放路径
circle:圆
等

输入:
类型名称 '表现形式'
'表现形式'::类型名称

postgres=# select '1,1'::point;
 point
-------
 (1,1)
(1 row)

postgres=# select '(1,1)'::point;
 point
-------
 (1,1)
(1 row)

postgres=# select lseg'1,1,2,3';
     lseg     
---------------
 [(1,1),(2,3)]
(1 row)

postgres=# select box'1,2,1,4';
     box     
-------------
 (1,4),(1,2)
(1 row)

postgres=# select path'1,3,6,8,9,3,4,7';
           path           
---------------------------
 ((1,3),(6,8),(9,3),(4,7))
(1 row)
postgres=# select circle'1,2,3';
  circle   
-----------
 <(1,2),3>
(1 row)

你可能感兴趣的:(postgresql,Oracle)