Udostępnij przez


AsTextZM (geography Data Type)

Zwraca reprezentacja OGC (Otwieranie lokalizacji geograficznych Consortium) Well-Known tekstu (WKT) geography rozszerzony dowolne wystąpienie Z (podniesienie) i M wartości (miara) przez wystąpienie.

.AsTextZM ()

Zwracane typy

SQL Server typ zwrotny: nvarchar(max)

Zwracany typ CLR: SqlChars

Przykłady

The following example creates a Point instance that contains Z (elevation) and M (measure) values.STAsText() selects the WKT values, (-122.34900 47.65100); AsTextZM() selects the same WKT values and also returns the values for Z and M, yielding (-122.34900 47.65100 10.3 12).

DECLARE @g geography;
SET @g = geography::STGeomFromText('POINT(-122.34900 47.65100 10.3 12)', 4326);
SELECT @g.STAsText();
SELECT @g.AsTextZM();