ST_PointFromText

Syntax

ST_PointFromText(wkt[,srid])
PointFromText(wkt[,srid])

Description

Constructs a POINT value using its WKT representation and SRID.

ST_PointFromText() and PointFromText() are synonyms.

Examples

CREATE TABLE gis_point  (g POINT);
SHOW FIELDS FROM gis_point;
INSERT INTO gis_point VALUES
    (PointFromText('POINT(10 10)')),
    (PointFromText('POINT(20 10)')),
    (PointFromText('POINT(20 20)')),
    (PointFromWKB(AsWKB(PointFromText('POINT(10 20)'))));

This page is licensed: GPLv2, originally from fill_help_tables.sql

Last updated

Was this helpful?