Poznámka
Přístup k této stránce vyžaduje autorizaci. Můžete se zkusit přihlásit nebo změnit adresáře.
Přístup k této stránce vyžaduje autorizaci. Můžete zkusit změnit adresáře.
Applies to:
SQL Server
Azure SQL Database
Azure SQL Managed Instance
SQL database in Microsoft Fabric
Returns 1 (true) if a spatial object contains at least one Z value; otherwise, it returns 0 (false).
Syntax
.HasZ
Return Types
SQL Server return type: bit
CLR return type: Boolean
Remarks
Examples
DECLARE @p GEOGRAPHY = 'Point(1 1 1 1)'
SELECT @p.HasZ
--Returns: 1 (true)
See Also
Extended Methods on Geography Instances
Z (geography Data Type)