albums_artists
4 rows where artist_id = 5194
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 8754 | 8754 | 8422 8422 | 5194 5194 |
| 9668 | 9668 | 9322 9322 | 5194 5194 |
| 12420 | 12420 | 12083 12083 | 5194 5194 |
| 15567 | 15567 | 15225 15225 | 5194 5194 |
Advanced export
JSON shape: default, array, newline-delimited
CREATE TABLE albums_artists ( album_id integer NOT NULL, artist_id integer NOT NULL, FOREIGN KEY(artist_id) REFERENCES artists(id), FOREIGN KEY(album_id) REFERENCES albums(id), UNIQUE(album_id, artist_id) );