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 © 2010, iAnywhere Solutions, Inc. - SQL Anywhere 12.0.0 |