多列轉1列 SqlServer 實現oracle10g的 wmsys.wm_concat()--for xml path('')

來源:互聯網
上載者:User

標籤:style   blog   http   io   ar   color   使用   sp   for   

有這麼一個表 

create table tb(id int, value varchar(10))  insert into tb values(1, ‘aa‘)  insert into tb values(1, ‘bb‘)  insert into tb values(2, ‘aaa‘)  insert into tb values(2, ‘bbb‘)  insert into tb values(2, ‘ccc‘)  insert into tb values(3, ‘ddd‘)  insert into tb values(3, ‘fff‘) 
                                                                                                                              需求:把id為3所以資料轉為1行。以|分隔

 

1.把id為3的資料轉  xml xml   select ‘|‘+(value) from tb where id=3 for xml path(‘‘)效果

 

 

for xml path(‘‘) 括弧加東西。的話。類似<li></li>的標籤 2. 去掉第一個  | 替換成空格   需要函數 Stuff,,   類似對字串操作這樣的函數還有 replace() right () left() substring() 看需求使用 

STUFF 函數將字串插入另一字串。它在第一個字串中從開始位置刪除指定長度的字元;然後將第二個字串插入第一個字串的開始位置。

 Transact-SQL 文法約定

文法
STUFF ( character_expression , start , length ,character_expression )
 stuff((select ‘|‘+(value) from tbwhere id=3for xml path(‘‘)),1,1,‘‘)  這句無法單獨運行

 

3.最終實現

 

select id ,value=stuff((select ‘|‘+(value) from tb where id=3for xml path(‘‘)),1,1,‘‘)  from tb where id=3 group by id

ps:去掉一個where 得到的結果是不一樣的,不懂為何。group by id 有去重的效果

 

。沒有------------

在oracle 資料庫中他也有自己的實現。覺得這些東西沒有什麼的。只要你有需求,必然有答案,只是你接觸了沒有而已。反正現在編程我們都是站在巨人的肩膀上了。

 

多列轉1列 SqlServer 實現oracle10g的 wmsys.wm_concat()--for xml path('')

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.