SQL Server XML 列上的 Where 子句过滤属性 AND 值

2022-11-08数据库问题
1

本文介绍了SQL Server XML 列上的 Where 子句过滤属性 AND 值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我在文档"表中有一个元数据"字段,其中包含以下数据:

I have a 'Metadata' field in table 'Document' that has the following data:

<properties>
  <property name="someProp">xyz</property>
  <property name="reportId">55</property>
  <property name="someOtherProp">abc</property>
</properties>'

如何编写一个查询来返回存在名称为reportId"的属性元素并且reportId"属性元素的值为 55 的记录?有时reportId"属性节点是唯一存在的节点,有时不存在,并且它并不总是按上述顺序排列,因此我无法查询绝对位置.有什么想法吗?

How can I write a query that returns records where a property element exists with a name of "reportId" and that "reportId" property element has a value of 55? Sometimes the "reportId" property node is the only one that exists, sometimes not, and it's not always in the above order so I can't query on absolute positions. Any ideas?

推荐答案

不需要提取值.使用 exist() 方法(xml 数据类型) 代替.

There is no need to extract the value. Use exist() Method (xml Data Type) instead.

select *
from Document
where Metadata.exist('/properties/property[@name="reportId" and . = 55]') = 1

这篇关于SQL Server XML 列上的 Where 子句过滤属性 AND 值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End
SQLServer SQL Server

相关推荐

如何在 sql server 2012 中部署现有的 SSIS 包?
How to deploy a existing SSIS Package in sql server 2012?(如何在 sql server 2012 中部署现有的 SSIS 包?)...
2024-04-16 数据库问题
11

“无法连接到本地 MySQL 服务器"在 docker-compose 中
quot;Can#39;t connect to local MySQL serverquot; in docker-compose(“无法连接到本地 MySQL 服务器在 docker-compose 中)...
2024-04-16 数据库问题
51

在 SQL Server 中设计 1:1 和 1:m 关系
Designing 1:1 and 1:m relationships in SQL Server(在 SQL Server 中设计 1:1 和 1:m 关系)...
2024-04-16 数据库问题
2

主键的 Sql 数据类型 - SQL Server?
Sql Data Type for Primary Key - SQL Server?(主键的 Sql 数据类型 - SQL Server?)...
2024-04-16 数据库问题
4

SQL Server:如何限制表包含单行?
SQL Server: how to constrain a table to contain a single row?(SQL Server:如何限制表包含单行?)...
2024-04-16 数据库问题
3

SQL Server 中数据库范围的唯一但简单的标识符
Database-wide unique-yet-simple identifiers in SQL Server(SQL Server 中数据库范围的唯一但简单的标识符)...
2024-04-16 数据库问题
4