What is the MongoDB equivalent for the following SQL query?
SELECT
station_id,
group_concat('signals')
FROM signals
GROUP BY station_id
i need to group by "station id", and concat "signal", thanks, the result would be like that:
| station_id | signals |
321 2,3,5,2