oracle wm_concat(column)函式使我們經常會使用到的,下面就教您如何使用oracle wm_concat(column)函式實現字段合併,如果您對oracle wm_concat(column)函式使用方面感興趣的話,不妨一看。
shopping:
-----------------------------------------
u_id goods num
------------------------------------------
1 蘋果 2
2 梨子 5
1 西瓜 4
3 葡萄 1
3 香蕉 1
1 橘子 3
********************===
想要的結果為:
--------------------------------
u_id goods_sum
____________________
1 蘋果,西瓜,橘子
2 梨子
3 葡萄,香蕉
---------------------------------
1.select u_id, wmsys.wm_concat(goods) goods_sum 2. 3.from shopping 4. 5.group by u_id
想要的結果2:
--------------------------------
u_id goods_sum
____________________
1 蘋果(2斤),西瓜(4斤),橘子(3斤)
2 梨子(5斤)
3 葡萄(1斤),香蕉(1斤)
---------------------------------
使用oracle wm_concat(column)函式實現:
select u_id, wmsys.wm_concat(goods || '(' || num || '斤)' ) goods_sum
from shopping
group by u_id
mysql---group_concat
oracle 合併列的函式,比較實用
oracle wm concat column 函式使我們經常會使用到的,下面就教您如何使用oracle wm concat column 函式實現字段合併,如果您對oracle wm concat column 函式使用方面感興趣的話,不妨一看。shopping u id goods num 1 ...
Oracle中合併列和行
1 合併列 employees norway e id e name 01hansen,ola 02svendson,tove 03svendson,stephen 04pettersen,kari employees usa e id e name 01turner,sally 02kent,cl...
查詢合併列
select c.gid,c.stuname,d.pargid,d.parname from2 select 3a.gid a.name asstuname 4from base user a5 asc6left join7 select 8a.gid b.pargid,9a.name asparn...