Convert row data to XML file format in SQL Server

Source: Internet
Author: User

Ways to convert row data from a table in SQL Server to an XML-formatted file:

Syntax: SELECT * FROM table name for XML path (name of parent node in XML file)

Case:

Create a User basic information table under the Movie Database [Userinfoes]:

Use [Movie]
GO
CREATE TABLE [dbo]. [Userinfoes] (
[UserId] [INT] IDENTITY (*) not NULL PRIMARY KEY,
[UserName] [varchar] () not NULL,
[Age] [INT] Not NULL,
[Phone] [varchar] () NULL
)
GO

Insert data into the User Information table [Userinfoes]:

INSERT into [Movie]. [dbo]. [Userinfoes] ([Username],[age],[phone])
Select ' Zhang San ', 20,0728-6254245 Union
Select ' John Doe ', 20,13125689541
GO

To convert a specified row of data in the User Information table into XML format:

Select Username,age from Userinfoes where userid=8 for XML path (' user ')

Convert row data to XML file format in SQL Server

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.