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

MySQL converte poche colonne in una riga

Per ottenere l'output desiderato, ti consigliamo di esaminare GROUP_CONCAT() :

SELECT
    id, month,
    GROUP_CONCAT(col) AS col,
    GROUP_CONCAT(col2) AS col2
FROM
    your_table
GROUP BY
    id, month;