Reputation: 41
What is the mysql equi of wm_concat?
Upvotes: 4
Views: 6029
Reputation: 51
GROUP_CONCAT() is the MySQL equivalent of WM_CONCAT() in Oracle.
GROUP_CONCAT()
WM_CONCAT()
Upvotes: 5
Reputation: 382656
concat_ws
http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_concat-ws
Upvotes: 3