You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

8 lines
188 B

const dbEvents = _db.query(`
SELECT
COUNT(event.id) as num,
MONTH(event.date_start) as month FROM event
GROUP BY MONTH(event.date_start)
`);
_out.json(dbEvents);