从SQL Server 2008返回XML文档

时间:2022-09-16 23:47:07

I have a template of an Excel XML document. Is there anyway I can build the XML document is SQL and have SQL Server return the XML document to me via stored proc.?

我有一个Excel XML文档的模板。无论如何,我可以构建XML文档为SQL,并让SQL Server通过存储proc将XML文档返回给我。

I am trying to see if SQL Server can not just return the data for the spreadsheet but the actual Excel XML document with the data in it.

我正在尝试查看SQL Server是否不仅可以返回电子表格的数据,还可以返回包含数据的实际Excel XML文档。

Something similar to this.

类似于这样的东西。

http://msdn.microsoft.com/en-us/library/office/aa191724%28v=office.11%29.aspx

http://msdn.microsoft.com/en-us/library/office/aa191724%28v=office.11%29.aspx

I want to build the XML is SQL.

我想构建的XML是SQL。

1 个解决方案

#1


0  

Yes, you can use the FOR XML clause.

是的,您可以使用FOR XML子句。

select * from table for xml raw

You can also use XML AUTO or XML EXPLICIT

您还可以使用XML AUTO或XML EXPLICIT

#1


0  

Yes, you can use the FOR XML clause.

是的,您可以使用FOR XML子句。

select * from table for xml raw

You can also use XML AUTO or XML EXPLICIT

您还可以使用XML AUTO或XML EXPLICIT