Mysql
 sql >> Database >  >> RDS >> Mysql

Raggruppa i risultati in sottogruppi

Dovresti farlo direttamente in MySQL quando esegui la query (se possibile):

SELECT DISTINCT Type, SUM(Price) as Total FROM table_name GROUP BY Type