zoukankan      html  css  js  c++  java
  • SQL XML

    DECLARE @Items XML
    SET @Items = 
        '<bookstore>

    <book category="COOKING">
      <title lang="en">Everyday Italian2</title>
      <author>Giada De Laurentiis</author>
      <year>2005</year>
      <price>30.00</price>
    </book>

    <book category="CHILDREN">
      <title lang="en">Harry Potter</title>
      <author>J K. Rowling</author>
      <year>2005</year>
      <price>29.99</price>
    </book>

    <book category="WEB">
      <title lang="en">XQuery Kick Start</title>
      <author>James McGovern</author>
      <author>Per Bothner</author>
      <author>Kurt Cagle</author>
      <author>James Linn</author>
      <author>Vaidyanathan Nagarajan</author>
      <year>2003</year>
      <price>49.99</price>
    </book>

    <book category="WEB">
      <title lang="zh">Learning XML</title>
      <author>Erik T. Ray</author>
      <year>2003</year>
      <price>39.95</price>
    </book>

    </bookstore>
    '

    DECLARE @idoc INT
    EXEC sp_xml_preparedocument @idoc OUTPUT, @Items
     
    SELECT * INTO #tt
    FROM   OPENXML(@idoc'//book'1)
           WITH (
               MatchID NVARCHAR(100'./title/@lang',
               MatchNum NVARCHAR(100'./year/text()',
               UserID NVARCHAR(32'./price/text()',
               Place NVARCHAR(100'./price/text()'
           ) 

    --SELECT Tab.Col.value('author[1]', 'varchar(max)') AS author,Tab.Col.value('title[1]', 'varchar(max)') AS title
    --
           --INTO #tt
    --
    FROM   @Items.nodes('//book') AS Tab(Col)
        
    SELECT *
    FROM   #tt
    GO
    DROP TABLE #tt
  • 相关阅读:
    html5结构标签
    video标签、audio标签
    a标签、img图片、iframe、表单元素、div
    pre,html转义,abbr缩写,表格table
    html 列表标签
    p,br,hn,b,i,u,s,sup,sub标签
    网站开发准备学习
    交互原型设计工具
    为什么要重写hashCode()方法和equals()方法及如何重写
    Java接口回调
  • 原文地址:https://www.cnblogs.com/skydau/p/2645875.html
Copyright © 2011-2022 走看看