cs50/6.sql

9 lines
108 B
SQL

SELECT name
FROM songs
WHERE artist_id =
(
SELECT id
FROM artists
WHERE name = 'Post Malone'
);