I want to make a sql for statistic over customers. I would like to print all customers from may, april, juni, july and so on. Example:
- In jan i have 20 new customers
- In feb i have 5 new customers
- In Mar i have 10 new customers
- ..... and so on
My database look like
`id` int(11) NOT NULL AUTO_INCREMENT,
`displayName` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`firstname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`lastname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`phoneNo` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`website` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`industry_Id` int(11) NOT NULL,
`date` date NOT NULL,