ST_POINT (Lakehouse v2)
Creates a point geometry from longitude and latitude values.
Analyze Syntax
Section titled “Analyze Syntax”func.st_point(<lng>, <lat>)Analyze Examples
Section titled “Analyze Examples”func.st_point(-73.9857, 40.7484)
┌────────────┐│ (geometry) │└────────────┘SQL Syntax
Section titled “SQL Syntax”ST_POINT(<lng>, <lat>)SQL Examples
Section titled “SQL Examples”SELECT ST_ASTEXT(ST_POINT(-73.9857, 40.7484));
┌──────────────────────────┐│ POINT (-73.9857 40.7484) │└──────────────────────────┘