如何将sql server 2008表转换为xml文件 [英] how to convert sql server 2008 table to xml file

查看:95
本文介绍了如何将sql server 2008表转换为xml文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何将sql server 2008表转换为xml文件

how to convert sql server 2008 table to xml file

推荐答案

这样的语句(基于臭名昭著的Northwind数据库):
A statement like this (based on the infamous Northwind database):
SELECT
    [EmployeeID] AS '@ID',
    [LastName], [FirstName],
    [Title],
    [BirthDate], [HireDate]
FROM
    [dbo].[Employees]
FOR XML PATH('Employee'), ROOT('Employees')



像这样的输出:



Output like this:

<Employees>
  <Employee ID="1">
    <LastName>Davolio</LastName>
    <FirstName>Nancy</FirstName>
    <Title>Sales Representative</Title>
    <BirthDate>1948-12-08T00:00:00</BirthDate>
    <HireDate>1992-05-01T00:00:00</HireDate>
  </Employee>
  <Employee ID="2">
    <LastName>Fuller</LastName>
    <FirstName>Andrew</FirstName>
    <Title>Vice President, Sales</Title>
    <BirthDate>1952-02-19T00:00:00</BirthDate>
    <HireDate>1992-08-14T00:00:00</HireDate>
  </Employee>



使用以下链接:

http://social.msdn.microsoft.com/Forums/pl/sqlxml/thread/5915dc22-562c-44ab-bd4d-041d43f47f1c [ http://stackoverflow.com/questions/3952469/export-xml-from-sql-server [ ^ ]
http://stackoverflow. com/questions/1564541/how-to-convert-records-in-a-table-to-xml-format-using-t-sql [



Use the following links:

http://social.msdn.microsoft.com/Forums/pl/sqlxml/thread/5915dc22-562c-44ab-bd4d-041d43f47f1c[^]
http://stackoverflow.com/questions/3952469/export-xml-from-sql-server[^]
http://stackoverflow.com/questions/1564541/how-to-convert-records-in-a-table-to-xml-format-using-t-sql[^]


Thanks,
Ambesha


这篇关于如何将sql server 2008表转换为xml文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆