Mysql string concatenation function and the string concatenation function uses Oracle

1, Mysql GROUP_CONCAT function is used in a string separated by commas splicing 

例如:select GROUP_CONCAT(columnName) from table;

2, Oracle the supreme function, may be used for string concatenation wm_concat

例如:select wm_concat(columnName) from table;

Published 48 original articles · won praise 7 · views 20000 +

Guess you like

Origin blog.csdn.net/Maoiur/article/details/104898874