cs50/7.sql

5 lines
105 B
MySQL
Raw Normal View History

SELECT AVG(energy)
FROM songs
JOIN artists ON songs.artist_id = artists.id
WHERE artists.name = 'Drake';