Condividi tramite


STSrid (tipo di dati geography)

Si applica a: SQL Server database SQL di Azure Istanza gestita di SQL di Azure database SQL in Microsoft Fabric

STSrid è un Integer che rappresenta l'identificatore SRID dell'istanza.

Sintassi

  
.STSrid  

Tipi restituiti

Tipo di SQL Server: int

Tipo CLR: SqlInt32

Osservazioni:

Questa proprietà può essere modificata.

Esempi

Nel primo esempio viene creata un'istanza geography con il valore dell'identificatore SRID uguale a 4326 (WGS84) e viene utilizzato STSrid per confermare l'identificatore SRID.

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

Nel secondo esempio viene utilizzato STSrid per impostare il valore dell'identificatore SRID dell'istanza su 4267 (NAD27), quindi viene confermato il valore SRID modificato.

SET @g.STSrid = 4267;  
SELECT @g.STSrid;  

Vedi anche

Metodi OGC sulle istanze di geografia
Identificatori SRID (Spatial Reference Identifier)