Constructs a 3D point from x,y,z coordinates.
 Syntax
 SyntaxNEW ST_Point(x,y,z[, srid])
 Parameters
 Parameters| 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. | 
 Standards and compatibility
 Standards and compatibilitySQL/MM (ISO/IEC 13249-3: 2006) 6.1.2
 Example
 ExampleThe 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 |