oracle wm_concat(column)函數使咱們常常會使用到的,下面就教您如何使用 oracle wm_concat(column)函數實現字段合併,若是您對oracle wm_concat(column)函數使用方面感興趣的話,不妨一看。oracle
shopping:函數
-----------------------------------------spa
u_id goods numxml
------------------------------------------class
1 蘋果 2select
2 梨子 5ping
1 西瓜 4co
3 葡萄 1
3 香蕉 1
1 橘子 3
=======================
想要的結果爲:
--------------------------------
u_id goods_sum
____________________
1 蘋果,西瓜,橘子
2 梨子
3 葡萄,香蕉
---------------------------------
想要的結果2:
--------------------------------
u_id goods_sum
____________________
1 蘋果(2斤),西瓜(4斤),橘子(3斤)
2 梨子(5斤)
3 葡萄(1斤),香蕉(1斤)
---------------------------------
使用oracle wm_concat(column)函數實現: