sql >> Base de Datos >  >> RDS >> Mysql

Seleccione la información del último artículo y únase a la cantidad total

Prueba esto

SELECT a.customer, count(a.sale), max_sale
FROM sales a
INNER JOIN (SELECT customer, sale max_sale 
            from sales x where dates = (select max(dates) 
                                        from sales y 
                                        where x.customer = y.customer
                                        and y.sale > 0
                                       )

           )b
ON a.customer = b.customer
GROUP BY a.customer, max_sale;

DEMOSTRACIÓN SQL