Long (tipo di dati geography)
Proprietà relativa alla longitudine dell'istanza geography.
Sintassi
.Long
Valore restituito
Tipo SQL Server: float
Tipo CLR: SqlDouble
Osservazioni
Nel modello OpenGIS Long viene definita solo su istanze geography costituite da un unico punto. Questa proprietà restituirà Null se le istanze geography contengono più di un unico punto. La proprietà è precisa e di sola lettura.
Esempi
In questo esempio viene creata un'istanza Point e recupera la longitudine del punto.
DECLARE @g geography;
SET @g = geography::STGeomFromText('POINT(-122.34900 47.65100)', 4326);
SELECT @g.Long;