I'm making a database of concerts that I've attended in SQLite. I have the following tables setup:
- Venues
- Artists
- Concerts
How can I make it so the concerts table can have multiple artist IDs associated with it? Should there just be multiple columns for ArtistId1, ArtistId2, ArtistId3, etc.?
Or, will I need a 3rd table that lists each ArtistId and the corresponding ConcertId?
I've tried looking up ways to put multiple artist ID's in the same column delimited somehow, but not sure that's an option.