SQL Query XML column.   SQL 查询 xml 字段

本文详细介绍了使用SQL查询获取XML字段值的方法,包括获取XML列数据、特定节点名称的值及使用条件过滤查询结果。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

知识共享许可协议
Work by Jianfei is licensed under a Creative Commons wei 3.0 Unported License.

 

 

1.  As we knew SQL Server has provided a serices of XML execution function,  we can using SQL query to get the field values directly. Please see following steps to create your own SQL xml query statement.

 
-- Get the XML column data, please case the ns0:Record statement is not a root node . See output #1
select Data from sct_DataSourceDatasetRecord where (DataSourceDatasetID = '117' or DataSourceDatasetID = '118' )
 
-- Get the XML node named as Investment,the pattern of "/" is a node filter. See output #2
SELECT   DataSourceDatasetRecordID, Data.query( ' //Investment ' as  InvesValue  from  sct_DataSourceDatasetRecord  where  (DataSourceDatasetID  =   ' 117 ' or  DataSourceDatasetID  =   ' 118 '
-- Get the XML node value using data function. See output #3
SELECT   DataSourceDatasetRecordID, Data.query( ' data(//Investment) ' as  InvesValue  from  sct_DataSourceDatasetRecord  where  (DataSourceDatasetID  =   ' 117 ' or  DataSourceDatasetID  =   ' 118 '

-- Get the XML node value query result using where condition. See output #3
select  DataSourceDatasetRecordID , InvesValue   from
(
SELECT   DataSourceDatasetRecordID, Data.query( ' data(//Investment) ' as  InvesValue  from  sct_DataSourceDatasetRecord  where  (DataSourceDatasetID  =   ' 117 ' or  DataSourceDatasetID  =   ' 118 ' ))  as  result  
where   Cast (InvesValue  as   varchar  ) =   ' c1 '

2. SQL query result.

 

 

More SQL对Xml字段的操作 Sample  Copy From : http://www.cnblogs.com/youring2/archive/2008/11/27/1342288.html

 

知识共享许可协议
Work by Jianfei is licensed under a Creative Commons wei 3.0 Unported License.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值