Fill-in missing data in MySQL SELECT statement
I want to present information from a MySQL DB (MariaDB, actually) approximately as follows: SELECT Client, Year, SUM(Sales) FROM MySalesTable GROUP BY Client, Year ORDER BY Client, Year DESC The issue is, if there is no data for a particular…