热门标签 | HotTags
当前位置:  开发笔记 > Android > 正文

读取XML为行记录

以下为引用的内容:1declare@xxml2set@x='bookgenre=securitypublicationdate=2002ISBN=0-7356-1588-23titleWritingSecureCode/title4author5first-nameMichael/

 

以下为引用的内容:
1 declare @x xml
2 set @x='
3  
4  
5      Michael
6      Howard
7  

8  
9      David
10      LeBlanc
11  

12   39.99
13
'
14
15
16
17SELECT nref.value('first-name[1]', 'nvarchar(50)') FirstName,
18       nref.value('last-name[1]', 'nvarchar(50)') LastName
19FROM   @x.nodes('//author') AS R(nref)
20
21

成果为
 

 




推荐阅读
author-avatar
新闻联播有没有大结局__742
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有