select JSON_MERGE(mcn_category_ids) cat from link_selection_flow_node_auditor_rel ;这个sql报错了 ,我想合并每一行的mcn_category_ids字段,这个字段是json类型的,所以sql应该怎么写
时间: 2023-03-07 21:19:49 浏览: 164
sql实现多行合并一行
你可以使用SELECT JSON_ARRAYAGG(mcn_category_ids) cat FROM link_selection_flow_node_auditor_rel;来实现你的目的,它会将每一行的mcn_category_ids字段合并为一个JSON数组。
阅读全文