跳到主要内容

ST_MAKEGEOMPOINT

引入或更新: v1.2.347

构造一个表示具有指定经度和纬度的点的 GEOMETRY 对象。

语法

ST_MAKEGEOMPOINT(<longitude>, <latitude>)

别名

参数

参数描述
<longitude>表示经度的 Double 值。
<latitude>表示纬度的 Double 值。

返回类型

Geometry。

示例

SELECT
ST_MAKEGEOMPOINT(
7.0, 8.0
) AS pipeline_point;

┌────────────────┐
│ pipeline_point │
├────────────────┤
POINT(7 8)
└────────────────┘

SELECT
ST_MAKEGEOMPOINT(
-122.3061, 37.554162
) AS pipeline_point;

┌────────────────────────────┐
│ pipeline_point │
├────────────────────────────┤
POINT(-122.3061 37.554162)
└────────────────────────────┘
开始使用 Databend Cloud
低成本
快速分析
多种数据源
弹性扩展
注册