sum(sales_price),
round(sum(sales_price)/ count(distinct user_id),2)
from sales_tb
where date_format(sales_date,'%Y-%m')='2021-11'

sum(sales_price),
round(sum(sales_price)/ count(distinct user_id),2)
from sales_tb
where date_format(sales_date,'%Y-%m')='2021-11'