Based on the title of your post, it sounds like you're looking for something like this.
insert into tablename (id, album, artist, track, length)
values
(1, 'meteora', 'linkin park', 'Easier to run', '4:56'),
(2, 'meteora', 'linkin park', 'Faint', '3:34'),
(3, 'Hybrid Theory', 'linkin park', 'With you', '5:34');
It would be better for the long run for you to break up your data into multiple tables though and use joins to combine them when needed.
You should have an artist table, an album table with the artist id as a key and a tracks table with album id as a key. This way you'll reduce the amount of redundant data.
|