Mysql – Selecting dates of month based on existing rows
I have a table with the following schema: `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `bookingDate` date NOT NULL, PRIMARY KEY(`id`) I need to get all dates of the current month where there's less than 5 bookings. (meaning where less than…