I would like to create a mySQL query that outputs data in the following form:
Date | # of small | # of null | # of other 2014-06-05 | 5 | 7 | 3 2014-06-04 | 3 | 21 | 4 2014-06-03 | 2 | 13 | 7 . . .
That is, I know how to calculate the right three columns, but how do I create the left-most column?
Also, I want a query; I don't want to create a table, since I don't have permissions in this database.
Thanks!