नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
Applies to:
SQL Server
Azure SQL Database
Azure SQL Managed Instance
SQL database in Microsoft Fabric
Returns 1 if a geometry instance is empty. Returns 0 if a geometry instance is not empty.
Syntax
.STIsEmpty ( )
Return Types
SQL Server return type: bit
CLR return type: SqlBoolean
Examples
The following example creates an empty geometry instance and uses STIsEmpty() to test whether the instance is empty.
DECLARE @g geometry;
SET @g = geometry::STGeomFromText('POLYGON EMPTY', 0);
SELECT @g.STIsEmpty();