MySQL Forums
Forum List  »  Newbie

convert to xml
Posted by: Imran Ashraf
Date: August 06, 2019 05:30AM

Hi,

I have this query and i want to prduce xml file in specific format:

Select payroll,forename, surname from staff;

xml format required:

<?xml version="1.0" encoding="UTF-8"?>
<ImportTask xmlns="http://inplace.quantumit.com.au/import/version_1_0/"; xmlns:i=
"http://www.w3.org/2001/XMLSchema-instance">;
<StaffMembers>
<Staff>
<Payroll>0123456</Payroll>
<Forename>Steve</Forename>
<Surname>Smith</Surname>
</Staff>
<Staff>
<Payroll>098765</Payroll>
<Forename>Alex</Forename>
<Surname>James</Surname>
</Staff>
</StaffMembers>
</ImportTask>


How can i write the query to produce this xml format?

Thanks

Options: ReplyQuote


Subject
Written By
Posted
convert to xml
August 06, 2019 05:30AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.