select JSON_MERGE(mcn_category_ids) cat from link_selection_flow_node_auditor_rel ;这个sql报错了 ,我想合并每一行的mcn_category_ids字段,这个sql应该怎么写
时间: 2023-03-07 21:19:48 浏览: 163
你可以尝试使用GROUP_CONCAT()函数:SELECT GROUP_CONCAT(mcn_category_ids) cat FROM link_selection_flow_node_auditor_rel;
阅读全文