Querying XML data types which have xmlns node attributes(查询具有 xmlns 节点属性的 XML 数据类型)
问题描述
我有以下 SQL 查询:
I have the following SQL query:
DECLARE @XMLDOC XML
SET @XMLDOC = '<Feed><Product><Name>Foo</Name></Product></Feed>'
SELECT x.u.value('Name[1]', 'varchar(100)') as Name
from @XMLDOC.nodes('/Feed/Product') x(u)
返回:
Name
----
Foo
但是,如果我的
节点具有 xmlns
属性,那么这不会返回任何结果:
However, if my <Feed>
node has an xmlns
attribute, then this doesn't return any results:
DECLARE @XMLDOC XML
SET @XMLDOC = '<Feed xmlns="bar"><Product><Name>Foo</Name></Product></Feed>'
SELECT x.u.value('Name[1]', 'varchar(100)') as Name
from @XMLDOC.nodes('/Feed/Product') x(u)
返回:
Name
----
只有当我有一个 xmlns
属性时才会发生这种情况,其他任何东西都可以正常工作.
This only happens if I have an xmlns
attribute, anything else works fine.
这是为什么?如何修改我的 SQL 查询以返回结果而不考虑属性?
Why is this, and how can I modify my SQL query to return results regardless of the attributes?
推荐答案
如果您的 XML 文档具有 XML 命名空间,那么您需要在查询中考虑这些!
If your XML document has XML namespaces, then you need to consider those in your queries!
因此,如果您的 XML 看起来像您的示例,那么您需要:
So if your XML looks like your sample, then you need:
-- define the default XML namespace to use
;WITH XMLNAMESPACES(DEFAULT 'bar')
SELECT
x.u.value('Name[1]', 'varchar(100)') as Name
from
@XMLDOC.nodes('/Feed/Product') x(u)
或者,如果您希望明确控制要使用的 XML 命名空间(例如,如果您有多个),请使用 XML 命名空间前缀:
Or if you prefer to have explicit control over which XML namespace to use (e.g. if you have multiple), use XML namespace prefixes:
-- define the XML namespace
;WITH XMLNAMESPACES('bar' as b)
SELECT
x.u.value('b:Name[1]', 'varchar(100)') as Name
from
@XMLDOC.nodes('/b:Feed/b:Product') x(u)
这篇关于查询具有 xmlns 节点属性的 XML 数据类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:查询具有 xmlns 节点属性的 XML 数据类型
基础教程推荐
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01