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
  • 相关阅读:
    排序算法与数据结构复习总结
    Kafka知识总结及面试题
    深入理解Redis系列之事务
    深入理解Redis系列之持久化
    基于数据库、redis和zookeeper实现的分布式锁
    深入理解MySQL系列之优化
    Mysql-主从复制(Docker)
    Mysql-GTID主从复制
    Ansible基础
    Nginx + php-fpm源码编译
  • 原文地址:https://www.cnblogs.com/skydau/p/2645875.html
Copyright © 2011-2022 走看看