English 中文(简体)
how to COPY Attribute value in a new attribute
原标题:

How to copy data of attribute to new attribute in the same column in sql

original data

<root>
<child attr= hello ></child>
</root>

Result 1

<root>
<child attr= hello  attr2= hello ></child>
</root>

Result 2(with a modification)

<root>
<child attr= hello  attr2= **H**ello **W**orld ></child>
</root>

I want to do this only through SQL XML Xquery

问题回答

I m not sure I follow what you re wanting exactly in the second result, but I ll take a stab at it: the first example below would produce your result #1 (I ve put your original data in test.xml and assumed in your real data that child and attr might be repeated):

<root>{
  for $child in doc( test.xml )/root/*
  return
    element {name($child)} {
      for $attr at $index in $child/@*
      return (
        attribute {name($attr)} {$attr},
        attribute {concat(name($attr), 2)} {$attr}
      )
    }
}</root>

It could be modified to put a different value in, like in result #2, like the below:

<root>{
  for $child in doc( test.xml )/root/*
  return
    element {name($child)} {
      for $attr at $index in $child/@*
      return (
        attribute {name($attr)} {$attr},
        attribute {concat(name($attr), 2)} {
           **H**ello **W**orld  
        }
      )
    }
}</root>

Hope that helps.

Assuming that we can use XSLT, I would do it like this:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="1.0">

    <xsl:output method="xml" indent="yes" omit-xml-declaration="no" />

    <xsl:template match="root">
        <xsl:copy>
            <xsl:apply-templates/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="child">
        <xsl:copy>
            <xsl:copy-of select="@*"/>
            <xsl:attribute name="attr2">
                <xsl:value-of select="@attr"/>
            </xsl:attribute>
        </xsl:copy>
    </xsl:template>

</xsl:stylesheet> 

Or, if you want the modification in Result 2, replace <xsl:template match="child"> with the following:

<xsl:template match="child">
    <xsl:copy>
        <xsl:copy-of select="@*"/>
        <xsl:attribute name="attr2">
            <xsl:value-of>
                <xsl:text>**H**ello **W**orld</xsl:text>
            </xsl:value-of>
        </xsl:attribute>
    </xsl:copy>
</xsl:template>
DECLARE @xmlData table (
   data xml
   )


INSERT INTO @xmlData(data) 
VALUES ( <root>
   <child attr="hello"></child>
   </root> )

.modify() performs all operations

UPDATE @xmlData
SET data.modify( insert (attribute attr2 {"hello"}) into (/root/child)[1] )

Verify that the data is correct

SELECT *
FROM @xmlData


UPDATE @xmlData
SET data.modify( replace value of (/root/child/@attr2)[1] with "**H**ello **W**orld"  )

Verify that the data is correct

SELECT *
FROM @xmlData

enter image description here





相关问题
how to represent it in dtd?

I have two element action and guid. guid is a required field when action is add. but when action is del it will not appear in file. How to represent this in dtd ?

.Net application configuration add xml-data

I need to add xml-content to my application configuration file. Is there a way to add it directly to the appSettings section or do I need to implement a configSection? Is it possible to add the xml ...

XStream serializing collections

I have a class structure that I would like to serialize with Xstream. The root class contains a collection of other objects (of varying types). I would like to only serialize part of the objects that ...

MS Word splits words in its XML format

I have a Word 2003 document saved as a XML in WordProcessingML format. It contains few placeholders which will be dynamically replaced by an appropriate content. But, the problem is that Word ...

Merging an XML file with a list of changes

I have two XML files that are generated by another application I have no control over. The first is a settings file, and the second is a list of changes that should be applied to the first. Main ...

How do I check if a node has no siblings?

I have a org.w3c.dom.Node object. I would like to see if it has any other siblings. Here s what I have tried: Node sibling = node.getNextSibling(); if(sibling == null) return true; else ...

Ordering a hash to xml: Rails

I m building an xml document from a hash. The xml attributes need to be in order. How can this be accomplished? hash.to_xml

热门标签