I'm in Oracle APEX and would like to create a new table from other existing one like this:
I have a column in a SONGS table that is:
ARTIST NAME | Another header |
---|---|
Bad Bunny | row |
Bad Bunny, Ozuna, Daddy Yankee | row |
And I want this in another table:
ID | Artist |
---|---|
1 | Bad Bunny |
2 | Ozuna |
3 | Daddy Yankee |
Also, from these 2 tables I would like to create another table or relationship to indicate on what songs have an artist participated.
Something like:
Song ID | Artist ID |
---|---|
1 | 1 |
2 | 1 |
2 | 2 |
I want this third table to know in what song has participated an artist.
So im having troubles to create the 2nd and 3rd table from the first table.