mirror of https://github.com/me50/kukemuna.git
5 lines
105 B
MySQL
5 lines
105 B
MySQL
|
|
SELECT AVG(energy)
|
||
|
|
FROM songs
|
||
|
|
JOIN artists ON songs.artist_id = artists.id
|
||
|
|
WHERE artists.name = 'Drake';
|