FOR XML Syntax : For XML « XML « SQL Server / T-SQL Tutorial

SQL Server / T-SQL Tutorial
1. Query
2. Insert Delete Update
3. Table
4. Table Join
5. Data Types
6. Set Operations
7. Constraints
8. Subquery
9. Aggregate Functions
10. Date Functions
11. Math Functions
12. String Functions
13. Data Convert Functions
14. Analytical Functions
15. Sequence Indentity
16. View
17. Index
18. Cursor
19. Database
20. Transact SQL
21. Procedure Function
22. Trigger
23. Transaction
24. XML
25. System Functions
26. System Settings
27. System Tables Views
28. User Role
29. CLR
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
SQL Server / T-SQL Tutorial » XML » For XML 
24. 2. 1. FOR XML Syntax
FOR XML extends SELECT statement by returning the relational query results in an XML format. 
FOR XML operates in four different modes: RAW, AUTO, EXPLICIT, and PATH.

In RAW mode, a single row element is generated for each row in the result set, with each column in the result converted to an attribute within the element.

The syntax for using RAW mode is as follows:

FOR XML RAW [ ('ElementName') ] }
[ [ , BINARY BASE64 ]  [ , TYPE ]
, ROOT [ ('RootName') ] ]
XMLDATA | XMLSCHEMA
[ ('TargetNameSpaceURI') ]} ]
, ELEMENTS XSINIL | ABSENT ]  ]
 
BINARY BASE64                             When this option is selected, binary data is returned using Base64-encoded format.         
TYPE                                      When TYPE is designated, the query returns results in the XML data type.         
ROOT [ ('RootName') ]                     Specifies the top-level element for the XML results.         
XMLDATA                                   When XMLDATA is used, XML-Data Reduced (XDRschema is returned.         
XMLSCHEMA [ ('TargetNameSpaceURI') ]      When XMLSCHEMA is used, XSD in-line schema is returned with the data results.          
ELEMENTS                                  When ELEMENTS is used, columns are returned as sub-elements.         
XSINIL                                    In conjunction with ELEMENTS, empty elements are returned for NULL values.         
ABSENT                                    Specifies that in conjunction with ELEMENTS, elements are not created for NULL values (this behavior is the default).       

The FOR XML AUTO mode creates XML elements in the results of a SELECT statement, and also automatically nests the data, based on the columns in the SELECT clause. AUTO shares the same options as RAW.


Reference from
SQL Server 2005 T-SQL Recipes A Problem-Solution Approach
24. 2. For XML
24. 2. 1. FOR XML Syntax
24. 2. 2. The FOR XML Clause
24. 2. 3. Select for FOR XML AUTO
24. 2. 4. FOR XML AUTO
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.