在 T-SQL 中查询之前将字符串转换为 XML 数据类型

2023-02-28数据库问题
1

本文介绍了在 T-SQL 中查询之前将字符串转换为 XML 数据类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

如何将字符串转换为 XML 数据类型,以便我可以将数据作为 XML 查询:

How do I convert a string into an XML datatype so that I can query the data as XML:

例如(感谢mellamokb the Wise"为此提供了原始 SQL)

For example (thanks to "mellamokb the Wise" who provided the original SQL for this)

如果 xmlstring 是 XML 类型,则下面的代码可以正常工作(请参阅 DEMO)

The code below works fine if xmlstring is of the type XML (see DEMO)

select id, name
from Data
cross apply (
  select Destination.value('data(@Name)', 'varchar(50)') as name
  from [xmlstring].nodes('/Holidays/Summer/Regions/Destinations/Destination') D(Destination)
) Destinations(Name)

但是,如果 xmlString 是 varchar 类型,即使我将字符串转换为 XML,我也会收到错误消息 (演示):

However, if xmlString is of type varchar I get an error even though I'm converting the string to XML (DEMO):

select id, name
from Data
  cross apply (
  select Destination.value('data(@Name)', 'varchar(50)') as name
  from CONVERT(xml,[xmlstring]).nodes('/Holidays/Summer/Regions/Destinations/Destination') D(Destination)
) Destinations(Name)

推荐答案

您可以在一个额外的交叉应用中进行转换.

You can do the cast it in one extra cross apply.

select id,
       T.N.value('@Name', 'varchar(50)') as name
from Data
cross apply (select cast(xmlstring as xml)) as X(X)
cross apply X.X.nodes('/Holidays/Summer/Regions/Destinations/Destination') T(N)

SQL 小提琴

转换为 XML 可能存在性能问题.看看这个答案和这个答案

There might be performance issues with casting to XML. Have a look at this answer and this answer

这篇关于在 T-SQL 中查询之前将字符串转换为 XML 数据类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

按天分组的 SQL 查询
SQL query to group by day(按天分组的 SQL 查询)...
2024-04-16 数据库问题
77

SQL 子句“GROUP BY 1"是什么意思?意思是?
What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)...
2024-04-16 数据库问题
62

在 Group By 查询中包含缺失的月份
Include missing months in Group By query(在 Group By 查询中包含缺失的月份)...
2024-04-16 数据库问题
12

sql group by 与不同
sql group by versus distinct(sql group by 与不同)...
2024-04-16 数据库问题
37

如何在SQL中返回每个组的增量组号
How to return a incremental group number per group in SQL(如何在SQL中返回每个组的增量组号)...
2024-04-16 数据库问题
8

统计分组返回的记录数
Count number of records returned by group by(统计分组返回的记录数)...
2024-04-16 数据库问题
10