列舉 Facet
適用於:SQL Server Azure SQL 資料庫 Azure SQL 受控執行個體
SQL Server 會拒絕類型含有模式 Facet 或列舉違反這些 Facet 的 XML 結構描述。
範例
下列結構描述將遭到拒絕,因為主要的列舉值包含大小字母混合的值。 它也將遭到拒絕,因為此值違反值只能是小寫字母的模式值。
CREATE XML SCHEMA COLLECTION MySampleCollection AS '
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://ns" xmlns:ns="http://ns">
<simpleType name="MyST">
<restriction base="string">
<pattern value="[a-z]*"/>
</restriction>
</simpleType>
<simpleType name="MyST2">
<restriction base="ns:MyST">
<enumeration value="mYstring"/>
</restriction>
</simpleType>
</schema>';
GO