XML拆分合併列值學習整理

2021-05-23 02:14:23 字數 661 閱讀 6656

原帖:http://blog.csdn.net/htl258/archive/2009/04/26/4127043.aspx -->建立測試資料 if object_id('tb') is not null drop table tb go create table tb(id int identity primary key,name nvarchar(2)) go insert into tb(name) select '張三' union all select '李四' union all select '王五' -->sql查詢 ---->合併列值 ;with t as ( select id, cast(stuff((select ','+name from tb for xml path('')),1,1,'') as varchar(20)) [value] from tb ) select * from t /* 合併效果: ---------------- id value ----------- -------------------- 1 張三,李四,王五 2 張三,李四,王五 3 張三,李四,王五 (3 行受影響) */ ---->拆分列值 select a.id, b.[value] from ( select id, [value] = convert(xml,'

' + replace([value], ',', '

') + '

用rdiff拆分合併檔案

我們的乙個方案是基於檔案做多端資料同步,見另外一篇部落格 基於檔案的資料同步方案 其中的核心是如何正確 高效地同步檔案,一開始我們使用了國產的libsync庫 libsync 基本的流程是 有檔案a和b,現在想把檔案a 變成 檔案b,先對檔案a做chunk 然後用chunk和檔案b對比,得到delt...

hbase學習筆記 regiion拆分 合併

region中儲存的是大量的rowkey資料 當region中的資料條數過多的時候,直接影響查詢效率.當region過大的時候.hbase會拆分region 這也是hbase的乙個優點 hbase的region split策略一共有以下幾種 當region大小大於某個閾值 hbase.hregion...

lipo命令拆分 合併iOS靜態庫

首先先檢視一下framework中包含的結構 開啟mac終端,cd到靜態庫的位置,輸入命令 lipo info x.framework x這時候會顯示出該framework中所包含的架構 architectures in the fat file x.framework x are i386 x86...