Generation

text to sql syntaxMon, 03 Jul 2023

Obtener el número total de canciones en cada género musical, ordenados de mayor a menor.

SELECT genre_id, COUNT(genre_id) AS total_songs FROM songs GROUP BY genre_id ORDER BY total_songs DESC;

Questions about programming?Chat with your personal AI assistant