我们使用 ADO 和 SQL Server。
我们的表有一个 blob 列XMLFIELD
,在这个 blob 中,我们存储了一个包含信息的完整 XML 文件。
<XML>
.... much much text and fields ....
<\XML>
读写这个XML字段没问题
如何构建查询以仅选择XMLFIELD
包含特定文本/单词的数据集
select * from MyTable where XMLFIELD contains a special word
或者
select * from MyTable where XMLFIELD contains a special field
and has a special value