Constructs a 3D point from X,Y,Z coordinates.
NEW ST_Point(x,y,z[, srid])
Name | Type | Description |
---|---|---|
x |
DOUBLE |
The X coordinate value. |
y |
DOUBLE |
The Y coordinate value. |
z |
DOUBLE |
The Z coordinate 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 Z (10 20 100).
SELECT NEW ST_Point(10.0,20.0,100.0,0) |
Discuss this page in DocCommentXchange.
|
Copyright © 2012, iAnywhere Solutions, Inc. - SQL Anywhere 12.0.1 |