我正在尝试为ContentNode
包含逗号的所有节点查询以下 XML。
<Node xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.xxx.xxx.xxx">
<SubNode>
<SubSubNode>
<ContentNode>Data, </ContentNode>
以下返回 0 个结果:
select *
from Table
where [XML].exist('/Node/SubNode/SubSubNode [contains(ContentNode[1],",")]')=1
任何帮助,将不胜感激。