Try this query:
SELECT
MONTH(Date) as Month,
AVG(Volume) as Volume
FROM
table
GROUP BY
MONTH(Date)
solved how to calculate average of different months having random data [closed]
Try this query:
SELECT
MONTH(Date) as Month,
AVG(Volume) as Volume
FROM
table
GROUP BY
MONTH(Date)
solved how to calculate average of different months having random data [closed]