I have a table in Hadoop that I can count the number of sales for a specific month
select count(*) from sales where sold_date between '2023-08-01' and '2023-08-31'
How can I update this query to get the date of the most sales in August instead of the count of sales for the whole month?
Try this :