ST_MAKEPOINT
Constructs a GEOGRAPHY object that represents a Point with the specified longitude and latitude.
Syntax
ST_MAKEPOINT(<longitude>, <latitude>)
Aliases
Arguments
Return Type
Geography.
Examples
SELECT
ST_ASWKT(
ST_MAKEPOINT(
7.0, 8.0
)
) AS pipeline_point;
┌────────────────┐
│ pipeline_point │
├────────────────┤
│ POINT(7 8) │
└────────────────┘
SELECT
ST_ASWKT(
ST_MAKEPOINT(
-122.3061, 37.554162
)
) AS pipeline_point;
╭────────────────────────────╮
│ pipeline_point │
├────────────────────────────┤
│ POINT(-122.3061 37.554162) │
╰────────────────────────────╯