从SQL2000查询xml数据(xml直接保存在一个单元格中,多行)
您好,我从 SQL2000 服务器检索 XML 数据时遇到问题。
表结构如下:
ID Name XML
1 Name1 <Root><DATA1>1-Data1</DATA2><DATA1>1-Data2</DATA2></Root>
2 Name2 <Root><DATA1>2-Data1</DATA2><DATA1>2-Data2</DATA2></Root>
3 Name3 <Root><DATA1>3-Data1</DATA2><DATA1>3-Data2</DATA2></Root>
我怎样才能得到这样的结果:
ID Name Data1 Data2
1 Name1 1-Data1 1-Data2
2 Name2 2-Data1 2-Data2
3 Name3 3-Data1 3-Data2
我是新的SQL2000。 SQL2000中可以这样查询吗?
提前感谢您的帮助!
Hi I get problem retrieve XML data from SQL2000 server.
The table structure is as following:
ID Name XML
1 Name1 <Root><DATA1>1-Data1</DATA2><DATA1>1-Data2</DATA2></Root>
2 Name2 <Root><DATA1>2-Data1</DATA2><DATA1>2-Data2</DATA2></Root>
3 Name3 <Root><DATA1>3-Data1</DATA2><DATA1>3-Data2</DATA2></Root>
How can I get the result out like this:
ID Name Data1 Data2
1 Name1 1-Data1 1-Data2
2 Name2 2-Data1 2-Data2
3 Name3 3-Data1 3-Data2
I am new SQL2000. Is such query possible in SQL2000?
Thanks for your help in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 SQL Server 2005 及更高版本中,这根本没有问题 - 如果您的 XML 非常有效,即:
您不能有
的开始标记,然后是结束标记- 这不是格式良好的 XML,任何 XML 解析引擎都无法处理它......
但是 SQL Server 2000 不会真正支持XML处理(它可以导入XML并吐出XML,但它不能真正处理它) - 恐怕你对2000版本不走运。
In SQL Server 2005 and up, this would be no problem at all - if your XML very even valid, that is:
You can't have an opening tag of
<DATA1>
and then a closing tag of</DATA2>
- this is not well-formed XML and no XML parsing engine will be able to handle it....But SQL Server 2000 doesn't really support XML processing (it can import XML and spit out XML, but it can't really process it) - I'm afraid you're out of luck with the 2000 version.