以下create xml schema collection
代码返回错误
消息 9336,第 16 层,状态 1,第 34 行 不支持 XML Schema 语法“唯一”。
create xml schema collection cs.T as N'
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="Column">
<xsd:unique name="uniqueKey">
<xsd:selector xpath="@ColumnKey"/>
<xsd:field xpath="."/>
</xsd:unique>
</xsd:element>
</xsd:schema>';
有没有办法通过其他方式设置唯一约束?