Returning multiple rows from querying XML column in SQL Server 2008

后端 未结 2 2037
感情败类
感情败类 2020-12-31 03:52

I have a table RDCAlerts with the following data in a column of type XML called AliasesValue:


  

        
2条回答
  •  清酒与你
    2020-12-31 04:36

    You need to use the CROSS APPLY statement along with the .nodes() function to get multiple rows returned.

    select 
        a.alias.value('(aliasType/text())[1]', 'varchar(20)') as 'aliasType', 
        a.alias.value('(aliasName/text())[1]', 'varchar(20)') as 'aliasName' 
    from 
        RDCAlerts r
        cross apply r.AliasesValue.nodes('/aliases/alias') a(alias)
    

提交回复
热议问题