how to count number of records from 3rd day to 62nd day for each person by using SQL query? – Mysql
I want to get the count of 'unitsold' for each Name from 3/1/2022 and 4/1/2022. For example Name 'a' required to count its units sold from 3rd to 8th day. SQL query: select Name, sum(unitsold) over (partion by Name order…