Constructs a 3D, measured point from X,Y,Z coordinates and a measure value
NEW ST_Point(x,y,z,m[, srid])
Name | Type | Description |
---|---|---|
x |
DOUBLE |
The X coordinate value. |
y |
DOUBLE |
The Y coordinate value. |
z |
DOUBLE |
The Z coordinate value. |
m |
DOUBLE |
The measure value. |
srid |
INT |
The SRID of the result. If not specified, the default is 0. |
SQL/MM (ISO/IEC 13249-3: 2006) 6.1.2
The following returns Point ZM (10 20 100 1224).
SELECT NEW ST_Point(10.0,20.0,100.0,1224.0,0) |
Discuss this page in DocCommentXchange.
|
Copyright © 2012, iAnywhere Solutions, Inc. - SQL Anywhere 12.0.1 |