Skip to content

Latest commit

 

History

History
55 lines (42 loc) · 1.76 KB

stasbinary-geography-data-type.md

File metadata and controls

55 lines (42 loc) · 1.76 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic ms.custom f1_keywords helpviewer_keywords dev_langs monikerRange
STAsBinary (geography Data Type)
STAsBinary (geography Data Type)
MladjoA
mlandzic
03/14/2017
sql
t-sql
reference
ignite-2024
STAsBinary_TSQL
STAsBinary (geography Data Type)
STAsBinary method
TSQL
=azuresqldb-current || >=sql-server-2016 || >=sql-server-linux-2017 || =azuresqldb-mi-current || =fabric

STAsBinary (geography Data Type)

[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance FabricSQLDB]

Returns the Open Geospatial Consortium (OGC) Well-Known Binary (WKB) representation of a geography instance.

This geography data type method supports FullGlobe instances or spatial instances that are larger than a hemisphere.

Syntax

  
.STAsBinary ( )  

Return Types

[!INCLUDEssNoVersion] return type: varbinary(max)

CLR return type: SqlBytes

Remarks

The OGC type of a geography instance can be determined by invoking STGeometryType().

Examples

The following example uses STAsBinary() to create a LineString``geography instance from (-122.360, 47.656) to (-122.343, 47.656) from text. It then returns the result in WKB.

DECLARE @g geography;  
SET @g = geography::STGeomFromText('LINESTRING( -122.360 47.656, -122.343 47.656)', 4326);  
SELECT @g.STAsBinary();  

See Also

OGC Methods on Geography Instances