我有一个名为 graph_table 的表,有 2 列
node_id INT
neighbour_id INT
我需要运行以下选择查询
SELECT node_id, aggregater_func( neighbour_id ) as neighbourhood FROM graph_table GROUP BY node_id
aggregater_func 将邻居聚合成一个MAP <INT(neighbour_id), INT(frequency)>
这个 aggregater_func 应该是什么?