如果不能在其上使用 text() ,如何获取类型化 xml 列中元素的原子值?
这个查询;
-- Add schema
CREATE XML SCHEMA COLLECTION MySchema AS N'<xs:schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
attributeFormDefault="unqualified"
elementFormDefault="qualified"
xmlns="http://mynamespace"
targetNamespace="http://mynamespace">
<xs:element name="element1" type="element1Type">
</xs:element>
<xs:complexType name="element1Type">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="element2" type="element2Type" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="element2Type">
<xs:sequence>
<xs:element name="element3" type="element3Type" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="element3Type">
<xs:sequence minOccurs="0">
<xs:element minOccurs="0" name="element4" />
</xs:sequence>
</xs:complexType>
</xs:schema>'
GO
-- Create table
CREATE TABLE [dbo].[MyTable](
[XmlColumn] [xml](CONTENT [dbo].[MySchema]) NOT NULL
)
GO
-- Add test data
INSERT INTO MyTable SELECT N'<element1 xmlns="http://mynamespace" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<element2>
<element3>
<element4>my text here</element4>
</element3>
</element2>
</element1>'
GO
-- run query
WITH XMLNAMESPACES(
'http://mynamespace' as s,
DEFAULT 'http://mynamespace'
)
SELECT
T.rows.value('(element3/element4)[1]/text()', 'varchar(100)') as [AtomicValue]
FROM
MyTable
CROSS APPLY
XmlColumn.nodes('/element1/element2') T(rows)
结果是;
XQuery [MyTable.XmlColumn.value()]: 'text()' 不支持简单类型或 'http://www.w3.org/2001/XMLSchema#anyType' 元素,找到 '元素({http://mynamespace}:element4,xs:anyType)?'。
我已经读过这个,但是在我希望能够读取的每个原子值上大规模编辑模式感觉就像是矫枉过正......