<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:sf="urn:foo1.foo.soap.bar.com">
	<xsl:output method="text" encoding="UTF-8"/>
	<xsl:template match="/">
		<xsl:text>insert into `somedb`.`sometable`( col1, col2,col n )	values ("</xsl:text>
		<xsl:apply-templates select="//records"/>
		<xsl:for-each select="/">
			<xsl:value-of select="."/>
			<xsl:text>","</xsl:text>
		</xsl:for-each>
		<xsl:for-each select="/">
			<xsl:value-of select="."/>
			<xsl:text>","</xsl:text>
		</xsl:for-each>
		<xsl:for-each select="/">
			<xsl:value-of select="/"/>
			<xsl:text>")</xsl:text>
		</xsl:for-each>
	</xsl:template>
</xsl:stylesheet>
