PostgreSQL学习篇9.11 几何类型

前端之家收集整理的这篇文章主要介绍了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,4';
     Box     
-------------
 (1,4),(1,2)
(1 row)

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

猜你在找的Postgre SQL相关文章