140

我将以下 XML 存储在RolesSQL Server 数据库的 XML 列(称为 )中。

<root>
   <role>Alpha</role>
   <role>Beta</role>
   <role>Gamma</role>
</root>

我想列出所有在其中具有特定角色的行。这个角色通过参数传递。

4

9 回答 9

218
select
  Roles
from
  MyTable
where
  Roles.value('(/root/role)[1]', 'varchar(max)') like 'StringToSearchFor'

如果您的列不是XML,则需要对其进行转换。您还可以使用其他语法来查询 XML 数据的某些属性。这是一个例子......

假设数据列有这个:

<Utilities.CodeSystems.CodeSystemCodes iid="107" CodeSystem="2" Code="0001F" CodeTags="-19-"..../>

...而您只想要那些CodeSystem = 2您的查询将是:

select 
  [data] 
from
  [dbo].[CodeSystemCodes_data]
  
where
  CAST([data] as XML).value('(/Utilities.CodeSystems.CodeSystemCodes/@CodeSystem)[1]', 'varchar(max)') = '2'

这些页面将向您展示有关如何在 T-SQL 中查询 XML 的更多信息:

使用 t-sql 查询 XML 字段

在 SQL Server 中展平 XML 数据

编辑

在玩了一点之后,我最终得到了这个使用CROSS APPLY的惊人查询。这将搜索每一行(角色)以查找您在 like 表达式中输入的值...

鉴于此表结构:

create table MyTable (Roles XML)

insert into MyTable values
('<root>
   <role>Alpha</role>
   <role>Gamma</role>
   <role>Beta</role>
</root>')

我们可以这样查询:

select * from 

(select 
       pref.value('(text())[1]', 'varchar(32)') as RoleName
from 
       MyTable CROSS APPLY

       Roles.nodes('/root/role') AS Roles(pref)
)  as Result

where RoleName like '%ga%'

您可以在此处查看 SQL Fiddle:http ://sqlfiddle.com/#!18/dc4d2/1/0

于 2012-04-27T04:09:43.577 回答
37
declare @T table(Roles xml)

insert into @T values
('<root>
   <role>Alpha</role>
   <role>Beta</role>
   <role>Gamma</role>
</root>')

declare @Role varchar(10)

set @Role = 'Beta'

select Roles
from @T
where Roles.exist('/root/role/text()[. = sql:variable("@Role")]') = 1

如果您希望查询where col like '%Beta%'可以使用contains

declare @T table(Roles xml)

insert into @T values
('<root>
   <role>Alpha</role>
   <role>Beta</role>
   <role>Gamma</role>
</root>')

declare @Role varchar(10)

set @Role = 'et'

select Roles
from @T
where Roles.exist('/root/role/text()[contains(., sql:variable("@Role"))]') = 1
于 2012-04-27T05:42:18.137 回答
13

如果您的字段名称是 Roles 并且表名称是 table1 您可以使用以下搜索

DECLARE @Role varchar(50);
SELECT * FROM table1
WHERE Roles.exist ('/root/role = sql:variable("@Role")') = 1
于 2012-04-27T04:05:49.243 回答
8

我想出了一个简单的解决方法,它也很容易记住:-)

select * from  
(select cast (xmlCol as varchar(max)) texty
 from myTable (NOLOCK) 
) a 
where texty like '%MySearchText%'
于 2016-10-04T19:12:58.227 回答
6

您可以执行以下操作

declare @role varchar(100) = 'Alpha'
select * from xmltable where convert(varchar(max),xmlfield) like '%<role>'+@role+'</role>%'

显然,这有点小技巧,我不建议将它用于任何正式的解决方案。但是,我发现在 SQL Server Management Studio for SQL Server 2012 中对 XML 列进行即席查询时,这种技术非常有用。

于 2015-09-08T23:06:54.053 回答
2

有用的提示。查询 SQL Server XML 列中的值(带有命名空间的 XML)

例如

Table [dbo].[Log_XML] contains columns Parametrs (xml),TimeEdit (datetime)

例如参数中的 XML:

<ns0:Record xmlns:ns0="http://Integration"> 
<MATERIAL>10</MATERIAL> 
<BATCH>A1</BATCH> 
</ns0:Record>

例如查询:

select
 Parametrs,TimeEdit
from
 [dbo].[Log_XML]
where
 Parametrs.value('(//*:Record/BATCH)[1]', 'varchar(max)') like '%A1%'
 ORDER BY TimeEdit DESC
于 2018-09-18T15:29:08.753 回答
1

我使用下面的语句来检索 Sql 表中 XML 中的值

with xmlnamespaces(default 'http://test.com/2008/06/23/HL.OnlineContract.ValueObjects')
select * from (
select
            OnlineContractID,
            DistributorID,
            SponsorID,
    [RequestXML].value(N'/OnlineContractDS[1]/Properties[1]/Name[1]', 'nvarchar(30)') as [Name]
   ,[RequestXML].value(N'/OnlineContractDS[1]/Properties[1]/Value[1]', 'nvarchar(30)') as [Value]
     ,[RequestXML].value(N'/OnlineContractDS[1]/Locale[1]', 'nvarchar(30)') as [Locale]
from [OnlineContract]) as olc
where olc.Name like '%EMAIL%' and olc.Value like '%EMAIL%' and olc.Locale='UK EN'
于 2014-03-07T11:44:49.480 回答
0

您可以查询整个标签,也可以只查询特定值。在这里,我对 xml 命名空间使用通配符。

declare @myDoc xml
set @myDoc = 
'<Root xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://stackoverflow.com">
    <Child>my value</Child>
 </Root>'

select @myDoc.query('/*:Root/*:Child') -- whole tag
select @myDoc.value('(/*:Root/*:Child)[1]', 'varchar(255)') -- only value
于 2020-07-10T08:59:59.277 回答
0

如果您想查找“Alpha”之外的其他节点,查询应该是这样的:

select Roles from MyTable where Roles.exist('(/*:root/*:role[contains(.,"Beta")])') = 1

于 2020-12-03T18:08:48.960 回答