'Songs' table in song db
The songs table should have a songid per song, but currently groups of songs in artists are bunched together in one field. They may also have non music files, such as .jpg This is due to the nature of the source dummy data.
They are stored in the following format:
.jpg s156788s tactics_ep.jpg ?
<?>
A solution would be to parse the files in django
mysql> select song_name from song where artist_id = (select id from artist where name="Akon") limit 1;