STPointFromWKB (tipo di dati geography)
Si applica a: SQL Server database SQL di Azure Istanza gestita di SQL di Azure database SQL in Microsoft Fabric
Restituisce un'istanza geographyPoint di una rappresentazione WKB (Well-Known Binary) OGC (Open Geospatial Consortium).
Sintassi
STPointFromWKB ( 'WKB_point' , SRID )
Argomenti
WKB_point
Rappresentazione WKB dell'istanza geographyPoint da restituire. WKB_point è un'espressione varbinary(max).
SRID
Espressione int che rappresenta l'identificatore SRID dell'istanza geographyPoint da restituire.
Tipi restituiti
Tipo SQL Server restituito: geography
Tipo CLR restituito: SqlGeography
Tipo OGC: Point
Osservazioni:
Questo metodo genera un'eccezione FormatException se l'input non è formattato in modo corretto.
Esempi
Nell'esempio seguente viene utilizzato il metodo STPointFromWKB()
per creare un'istanza geography
.
DECLARE @g geography;
SET @g = geography::STPointFromWKB(0x010100000017D9CEF753D347407593180456965EC0, 4326);
SELECT @g.ToString();