Is there a more effective way to return multiple columns from a table that contains a date column instead of using inline subqueries?
SELECT (SELECT SUM(`value`) FROM `data` WHERE MONTH(`date`) = 1 AS `Jan`),
(SELECT ...) // Feb, Mar, etc.
Because having 12 inline subqueries is taxing on the query engine, right?