mirror of https://github.com/me50/kukemuna.git
9 lines
108 B
MySQL
9 lines
108 B
MySQL
|
|
SELECT name
|
||
|
|
FROM songs
|
||
|
|
WHERE artist_id =
|
||
|
|
(
|
||
|
|
SELECT id
|
||
|
|
FROM artists
|
||
|
|
WHERE name = 'Post Malone'
|
||
|
|
);
|